Remove configureLink

postInstallMessage already has this information
This commit is contained in:
Girish Ramakrishnan
2017-02-18 12:46:09 -08:00
parent f8ada91dc5
commit c0febacc30
3 changed files with 0 additions and 34 deletions

View File

@@ -199,16 +199,6 @@ app.filter('applicationLink', function() {
};
});
app.filter('configureLink', function() {
return function(app) {
if (app.manifest.configurePath && app.installationState === ISTATES.INSTALLED && app.health === HSTATES.HEALTHY) {
return 'https://' + app.fqdn + (app.manifest.configurePath[0] !== '/' ? '/' : '') + app.manifest.configurePath;
} else {
return '';
}
};
});
app.filter('prettyHref', function () {
return function (input) {
if (!input) return input;