17 lines
566 B
TypeScript
17 lines
566 B
TypeScript
import http from '@/api/http';
|
|
import { Location, rawDataToLocation } from '@/api/admin/locations/getLocations';
|
|
|
|
export default (short: string, long: string | null, include: string[] = []): Promise<Location> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.post(
|
|
'/api/application/locations',
|
|
{
|
|
short,
|
|
long,
|
|
},
|
|
{ params: { include: include.join(',') } },
|
|
)
|
|
.then(({ data }) => resolve(rawDataToLocation(data)))
|
|
.catch(reject);
|
|
});
|
|
};
|