Add initial support to add applinks

This commit is contained in:
Johannes Zellner
2022-07-07 13:32:20 +02:00
parent c8da53fc80
commit c0a4e9e5bd
4 changed files with 134 additions and 34 deletions

View File

@@ -149,7 +149,9 @@ app.filter('applicationLink', function () {
if (!app) return '';
if (!app.pendingPostInstallConfirmation) {
return 'https://' + app.fqdn;
// app links have http already in the fqdn
if (app.fqdn.indexOf('http') !== 0) return 'https://' + app.fqdn;
else return app.fqdn;
} else {
return '';
}