Remove setup and superuser routes when SUPER_USERS is not enabled

Fixes #2064
This commit is contained in:
Joseph Schorr 2016-11-02 16:10:20 -04:00
parent a3c540efcb
commit 32627f3c2a
3 changed files with 12 additions and 10 deletions

View file

@ -11,7 +11,7 @@
}]);
function ErrorViewCtrl($scope, ApiService, $routeParams, UserService) {
$scope.info = window.__error_info;
$scope.code = window.__error_code;
$scope.info = window.__error_info || {};
$scope.code = window.__error_code || 404;
}
}());