13 lines
495 B
TypeScript
13 lines
495 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);
|
||
|
});
|
||
|
};
|