Remove now unused tutorial route and business logic

We can bring that back again if needed
This commit is contained in:
Johannes Zellner
2017-01-17 12:50:57 +01:00
parent 7255a86b32
commit a0ef86f287
4 changed files with 2 additions and 41 deletions

View File

@@ -113,7 +113,6 @@ function initializeExpressSync() {
router.get ('/api/v1/profile', profileScope, routes.profile.get);
router.post('/api/v1/profile', profileScope, routes.profile.update);
router.post('/api/v1/profile/password', profileScope, routes.user.verifyPassword, routes.profile.changePassword);
router.post('/api/v1/profile/tutorial', profileScope, routes.profile.setShowTutorial);
// user routes
router.get ('/api/v1/users', usersScope, routes.user.requireAdmin, routes.user.list);