Do not remove alternateDomains to allow apps view filter to work

This commit is contained in:
Johannes Zellner
2020-06-14 13:38:56 +02:00
parent 65d8074a07
commit d6ec65d456
+1 -1
View File
@@ -426,7 +426,7 @@ function removeInternalFields(app) {
// non-admins can only see these
function removeRestrictedFields(app) {
return _.pick(app,
'id', 'appStoreId', 'installationState', 'error', 'runState', 'health', 'taskId',
'id', 'appStoreId', 'installationState', 'error', 'runState', 'health', 'taskId', 'alternateDomains',
'location', 'domain', 'fqdn', 'manifest', 'portBindings', 'iconUrl', 'creationTime', 'ts', 'tags', 'label');
}