From 4b31411a5f9a3cb0200bce1c85af67e4d6a23dcb Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Wed, 6 Sep 2023 23:04:44 +0000 Subject: [PATCH] fix: remove public scope from app role --- app/config/roles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/roles.php b/app/config/roles.php index 444b478d2a..04ee7bb29f 100644 --- a/app/config/roles.php +++ b/app/config/roles.php @@ -95,6 +95,6 @@ return [ ], Auth::USER_ROLE_APPS => [ 'label' => 'Applications', - 'scopes' => ['public', 'health.read', 'graphql'], + 'scopes' => ['health.read', 'graphql'], ], ];