admin column is no more in users table

This commit is contained in:
Girish Ramakrishnan
2018-04-26 19:39:52 -07:00
parent 7549b3e837
commit 561d2d9f8b
2 changed files with 0 additions and 2 deletions

View File

@@ -134,7 +134,6 @@ function initializeExpressSync() {
router.post('/api/v1/profile/twofactorauthentication/enable', profileScope, routes.profile.enableTwoFactorAuthentication);
router.post('/api/v1/profile/twofactorauthentication/disable', profileScope, routes.user.verifyPassword, routes.profile.disableTwoFactorAuthentication);
// user routes
router.get ('/api/v1/users', usersScope, routes.user.requireAdmin, routes.user.list);
router.post('/api/v1/users', usersScope, routes.user.requireAdmin, routes.user.create);