The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/app/cloud/server/oauthScopes.ts

13 lines
381 B

// These are the scopes we by default request access to
export const workspaceScopes = [
'workspace:license:read',
'workspace:client:write',
'workspace:stats:write',
'workspace:push:send',
'marketplace:read',
'marketplace:download',
'fedhub:register',
] as const;
// These are the scopes we use for the user
export const userScopes = ['openid', 'offline_access'] as const;