Update
This commit is contained in:
parent
5a64568824
commit
a748b93133
7 changed files with 81 additions and 27 deletions
|
|
@ -23,5 +23,8 @@ module.exports = app => {
|
|||
// Authenticate a User
|
||||
router.post("/auth", users.auth);
|
||||
|
||||
// Disconnect a User
|
||||
router.delete("/auth/disconnect", users.disconnect);
|
||||
|
||||
app.use('/api/users', router);
|
||||
};
|
||||
|
|
|
|||
Reference in a new issue