summaryrefslogtreecommitdiffstats
path: root/server/api/authentication.js
diff options
context:
space:
mode:
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
-*/