admin is now simply a flag

This commit is contained in:
Girish Ramakrishnan
2018-07-26 15:45:52 -07:00
parent 314da7ace8
commit 9e9e651714
6 changed files with 20 additions and 37 deletions
-9
View File
@@ -231,15 +231,6 @@ app.filter('inProgressApps', function () {
};
});
app.filter('ignoreAdminGroup', function () {
return function (groups) {
return groups.filter(function (group) {
if (group.id) return group.id !== 'admin';
return group !== 'admin';
});
};
});
app.filter('applicationLink', function() {
return function(app) {
if (app.installationState === ISTATES.INSTALLED && app.health === HSTATES.HEALTHY && !app.pendingPostInstallConfirmation) {