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

@@ -994,15 +994,6 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
return (available - needed) >= 0;
};
Client.prototype.setShowTutorial = function (show, callback) {
var data = { showTutorial: show };
post('/api/v1/profile/tutorial', data).success(function (data, status) {
if (status !== 204) return callback(new ClientError(status, data));
callback(null);
}).error(defaultErrorHandler(callback));
};
client = new Client();
return client;
}]);