summaryrefslogtreecommitdiffstats
path: root/server/api/authentication.js
diff options
context:
space:
mode:
authorJannik Schönartz2019-02-22 03:08:24 +0100
committerJannik Schönartz2019-02-22 03:08:24 +0100
commitded061757044ef9d4ca088ec95432bdf5b06f358 (patch)
treee4b79e51448dd94be3acb3884ebe14a25bf38db6 /server/api/authentication.js
parent[authentication] Implement initial root account setup (diff)
downloadbas-ded061757044ef9d4ca088ec95432bdf5b06f358.tar.gz
bas-ded061757044ef9d4ca088ec95432bdf5b06f358.tar.xz
bas-ded061757044ef9d4ca088ec95432bdf5b06f358.zip
[users] Move user based calls from the authentication to the users api
Diffstat (limited to 'server/api/authentication.js')
-rw-r--r--server/api/authentication.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/server/api/authentication.js b/server/api/authentication.js
index 02b295b..050031c 100644
--- a/server/api/authentication.js
+++ b/server/api/authentication.js
@@ -27,16 +27,3 @@ noAuthRouter.post('/setup', (req, res) => {
})
module.exports.noAuthRouter = noAuthRouter
-
-/* USERS API
-var authentication = require(path.join(__appdir, 'lib', 'authentication'))
-router.post('/', (req, res) => {
- authentication.signup(req, res)
-})
-
-router.post('/:id/password', (req, res) => {
- authentication.changepassword(req, res)
-})
-
-module.exports.router = router
-*/