Make the user confirm the post install message on first time clicking the app icon
This commit is contained in:
@@ -1056,6 +1056,9 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N
|
||||
app.message = installationProgress.replace(/.*, /,'');
|
||||
}
|
||||
|
||||
// amend the post install confirm state
|
||||
app.pendingPostInstallConfirmation = !!localStorage['confirmPostInstall_' + app.id];
|
||||
|
||||
return app;
|
||||
};
|
||||
|
||||
|
||||
+1
-1
@@ -236,7 +236,7 @@ app.filter('ignoreAdminGroup', function () {
|
||||
|
||||
app.filter('applicationLink', function() {
|
||||
return function(app) {
|
||||
if (app.installationState === ISTATES.INSTALLED && app.health === HSTATES.HEALTHY) {
|
||||
if (app.installationState === ISTATES.INSTALLED && app.health === HSTATES.HEALTHY && !app.pendingPostInstallConfirmation) {
|
||||
return 'https://' + app.fqdn;
|
||||
} else {
|
||||
return '';
|
||||
|
||||
Reference in New Issue
Block a user