Add nest endpoints and pages

This commit is contained in:
Matthew Penner
2020-12-31 17:27:16 -07:00
parent 359769244f
commit 6c85be72fa
12 changed files with 473 additions and 10 deletions

View File

@@ -0,0 +1,20 @@
import http from '@/api/http';
import { rawDataToNest } from '@/api/transformers';
export interface Nest {
id: number;
uuid: string;
author: string;
name: string;
description: string | null;
createdAt: Date;
updatedAt: Date;
}
export default (): Promise<Nest[]> => {
return new Promise((resolve, reject) => {
http.get('/api/application/nests')
.then(({ data }) => resolve((data.data || []).map(rawDataToNest)))
.catch(reject);
});
};