feat(wip): add support for multi user in instance

This commit is contained in:
Sonny
2023-05-30 01:17:50 +02:00
parent 7c4999830f
commit e7e7e0c950
8 changed files with 153 additions and 37 deletions

View File

@@ -1,5 +1,6 @@
const PATHS = {
LOGIN: "/signin",
LOGOUT: "/signout",
HOME: "/",
CATEGORY: {
CREATE: "/category/create",
@@ -13,14 +14,14 @@ const PATHS = {
},
API: {
CATEGORY: {
CREATE: "/category/create",
EDIT: "/category/edit",
REMOVE: "/category/remove",
CREATE: "/api/category/create",
EDIT: "/api/category/edit",
REMOVE: "/api/category/remove",
},
LINK: {
CREATE: "/link/create",
EDIT: "/link/edit",
REMOVE: "/link/remove",
CREATE: "/api/link/create",
EDIT: "/api/link/edit",
REMOVE: "/api/link/remove",
},
},
NOT_FOUND: "/404",