From ba13ff94bf6c2dbd7eda59df0aecaccf343f363a Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Mon, 17 May 2021 12:08:07 +0930 Subject: [PATCH] fix: allow upc keys to access display endpoint --- app/core/default-permissions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/core/default-permissions.ts b/app/core/default-permissions.ts index d9e85e7e5..3e9838c3f 100644 --- a/app/core/default-permissions.ts +++ b/app/core/default-permissions.ts @@ -65,7 +65,8 @@ export const upc = { { resource: 'vars', action: 'read:any', attributes: '*' }, { resource: 'disk', action: 'read:any', attributes: '*' }, { resource: 'crash-reporting-enabled', action: 'read:any', attributes: '*' }, - { resource: 'servers', action: 'read:any', attributes: '*' } + { resource: 'servers', action: 'read:any', attributes: '*' }, + { resource: 'display', action: 'read:any', attributes: '*' } ] };