Skip to content

Commit 3484065

Browse files
committed
fix(auth): add missing required scopes for organization and user profiles
- Added new required scopes: - "read:organization_discovery_domains" - "read:self_service_profiles" - "read:user_attribute_profiles" This change ensures that the application has the necessary permissions to access organization discovery domains and user attribute profiles, improving the overall functionality of the authentication process.
1 parent b99d0e5 commit 3484065

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal/auth/auth.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ var RequiredScopes = []string{
149149
"read:event_streams", "create:event_streams", "update:event_streams", "delete:event_streams",
150150
"read:network_acls", "create:network_acls", "update:network_acls", "delete:network_acls",
151151
"read:token_exchange_profiles", "create:token_exchange_profiles", "update:token_exchange_profiles", "delete:token_exchange_profiles",
152+
"read:organization_discovery_domains", "read:self_service_profiles", "read:user_attribute_profiles",
152153
}
153154

154155
// GetDeviceCode kicks-off the device authentication flow by requesting

0 commit comments

Comments
 (0)