2022-12-16 02:06:14 +00:00
|
|
|
import http from '@/api/http';
|
|
|
|
import { Location, rawDataToLocation } from '@/api/admin/locations/getLocations';
|
|
|
|
|
|
|
|
export default (id: number, short: string, long: string | null, include: string[] = []): Promise<Location> => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2023-01-12 19:31:47 +00:00
|
|
|
http.patch(
|
|
|
|
`/api/application/locations/${id}`,
|
|
|
|
{
|
|
|
|
short,
|
|
|
|
long,
|
|
|
|
},
|
|
|
|
{ params: { include: include.join(',') } },
|
|
|
|
)
|
2022-12-16 02:06:14 +00:00
|
|
|
.then(({ data }) => resolve(rawDataToLocation(data)))
|
|
|
|
.catch(reject);
|
|
|
|
});
|
|
|
|
};
|