From 3206afcd7c7d867be28d2b8d1eb527f6f60cd221 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 16 Feb 2021 20:08:41 +0100 Subject: [PATCH] Do not remove accessRestriction from install app listing --- src/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps.js b/src/apps.js index 616890120..14c81b7d1 100644 --- a/src/apps.js +++ b/src/apps.js @@ -412,7 +412,7 @@ function removeInternalFields(app) { // non-admins can only see these function removeRestrictedFields(app) { return _.pick(app, - 'id', 'appStoreId', 'installationState', 'error', 'runState', 'health', 'taskId', 'alternateDomains', 'aliasDomains', 'sso', + 'id', 'appStoreId', 'installationState', 'error', 'runState', 'health', 'taskId', 'accessRestriction', 'alternateDomains', 'aliasDomains', 'sso', 'location', 'domain', 'fqdn', 'manifest', 'portBindings', 'iconUrl', 'creationTime', 'ts', 'tags', 'label', 'enableBackup'); }