From 248a7881762835ca93f32364e7011f1d99a7c300 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 31 Jan 2023 22:10:53 -0800 Subject: [PATCH] Add endpoints to api --- utils/api.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utils/api.tsx b/utils/api.tsx index 3912b61e..862dac3c 100644 --- a/utils/api.tsx +++ b/utils/api.tsx @@ -168,6 +168,9 @@ class Api { const api: Api = new Api({ url: process.env.NEXT_PUBLIC_SIERO_API_URL || 'https://localhost:3000/api/v1'}) api.createEntity({ name: 'users' }) api.createEntity({ name: 'parties' }) +api.createEntity({ name: 'characters' }) +api.createEntity({ name: 'weapons' }) +api.createEntity({ name: 'summons' }) api.createEntity({ name: 'grid_characters' }) api.createEntity({ name: 'grid_weapons' }) api.createEntity({ name: 'grid_summons' })