From 2d7a061d1bd23130120625cacec1f309efb8e02c Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 19 Oct 2020 05:11:21 -0700 Subject: [PATCH] Add Character endpoint --- src/utils/api.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/api.tsx b/src/utils/api.tsx index 672d7a94..bc028c88 100644 --- a/src/utils/api.tsx +++ b/src/utils/api.tsx @@ -65,6 +65,7 @@ class Api { const api: Api = new Api({ url: process.env.SIERO_API_URL || 'http://127.0.0.1:3000/api/v1' }) api.createEntity( { name: 'users' }) api.createEntity( { name: 'parties' }) +api.createEntity( { name: 'characters' }) api.createEntity( { name: 'weapons' }) api.createEntity( { name: 'summons' })