Make the user confirm the post install message on first time clicking the app icon

This commit is contained in:
Johannes Zellner
2018-06-14 15:46:55 +02:00
parent 461fb0144e
commit 37c8b2b57f
5 changed files with 73 additions and 3 deletions

View File

@@ -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 '';