backend: initial log in dialog

This commit is contained in:
muerwre 2018-11-29 18:38:46 +07:00
parent 6f6e6ae6d7
commit 8bba2ff1ba
8 changed files with 83 additions and 7 deletions

View file

@ -1,8 +1,10 @@
export const SERVER = 'http://alpha-map.vault48.org';
export const TEST = 'http://localhost:3000';
export const API = {
COMPOSE: `${SERVER}/engine/composerOrchid.php`,
GET_GUEST: `${SERVER}/engine/authOrchid.php`,
CHECK_TOKEN: `${SERVER}/engine/authOrchid.php`,
GET_GUEST: `${TEST}/auth/guest`,
CHECK_TOKEN: `${TEST}/auth`,
GET_MAP: `${SERVER}/engine/authOrchid.php`,
POST_MAP: `${SERVER}/engine/authOrchid.php?action=store`,
};