admin(ui): add missing API requests

This commit is contained in:
Matthew Penner 2021-01-06 16:38:39 -07:00
parent 63daa7b14f
commit b45592466e
29 changed files with 253 additions and 10 deletions

View file

@ -1,12 +1,12 @@
import http from '@/api/http';
import { Location } from '@/api/admin/locations/getLocations';
import { Location, rawDataToLocation } from '@/api/admin/locations/getLocations';
export default (short: string, long?: string): Promise<Location> => {
return new Promise((resolve, reject) => {
http.post('/api/application/locations', {
short, long,
})
.then(({ data }) => resolve(data.attributes))
.then(({ data }) => resolve(rawDataToLocation(data)))
.catch(reject);
});
};