Feat/controllers - refactor entire backend and new admin interface #75

Merged
KevinMidboe merged 117 commits from feat/controllers into master 2021-02-19 00:19:52 +00:00
Showing only changes of commit 3388bed400 - Show all commits

View File

@@ -86,7 +86,7 @@ router.get("/chat/history", chatController.getAllHistory);
router.delete("/chat/history", mustBeAuthenticated, chatController.deleteHistory);
router.post("/login", userController.login);
router.post("/register", userController.register);
router.post("/register", mustBeAuthenticated, userController.register);
router.get("/logout", userController.logout);
// router.get("/", documentation.apiInfo);