Setup reroutes when complete, fix gunicorn check
This commit is contained in:
parent
e711c1efe6
commit
dbce986af6
5 changed files with 10 additions and 14 deletions
|
@ -10,7 +10,11 @@
|
|||
})
|
||||
}]);
|
||||
|
||||
function IncompleteSetupCtrl($scope, $timeout, ApiService, Features, UserService, ContainerService, CoreDialog) {
|
||||
function IncompleteSetupCtrl($scope, $location, $timeout, ApiService, Features, UserService, ContainerService, CoreDialog, Config) {
|
||||
if (Config['SETUP_COMPLETE']) {
|
||||
$location.path('/');
|
||||
return;
|
||||
}
|
||||
if (!Features.SUPER_USERS) {
|
||||
return;
|
||||
}
|
||||
|
|
Reference in a new issue