From 83cd30c63cd7cf095155e2f68092c53c7f443e5e Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Tue, 22 Aug 2023 21:50:40 -0400 Subject: [PATCH] Fix API keys missing public scope --- 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 ec9cf51bf1..e97cb8a0fc 100644 --- a/app/config/roles.php +++ b/app/config/roles.php @@ -92,6 +92,6 @@ return [ ], Auth::USER_ROLE_APPS => [ 'label' => 'Applications', - 'scopes' => ['health.read', 'graphql'], + 'scopes' => ['public', 'health.read', 'graphql'], ], ];