Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Merge (#413) - Added UserAuthenticationMethod scopes
Browse files Browse the repository at this point in the history
Added UserAuthenticationMethod scopes
  • Loading branch information
thewahome authored Apr 7, 2020
2 parents b032e26 + 21f82ce commit dd647c9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/app/scopes-dialog/scopes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -995,5 +995,33 @@ export const PermissionScopes: IPermissionScope[] = [
longDescription: 'Allows the app to read all webhook subscriptions on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'UserAuthenticationMethod.Read',
description: 'Read user authentication methods',
longDescription: 'Allows the app to read the signed-in user\'s authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like the signed-in user\'s passwords, or to sign-in or otherwise use the signed-in user\'s authentication methods.',
preview: true,
admin: true
},
{
name: 'UserAuthenticationMethod.Read.All',
description: 'Read all users\' authentication methods',
longDescription: 'Allows the app to read authentication methods of all users in your organization that the signed-in user has access to. Authentication methods include things like a user\'s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.',
preview: true,
admin: true
},
{
name: 'UserAuthenticationMethod.ReadWrite',
description: 'Read and write user authentication methods',
longDescription: 'Allows the app to read and write the signed-in user\'s authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like the signed-in user\'s passwords, or to sign-in or otherwise use the signed-in user\'s authentication methods.',
preview: true,
admin: true
},
{
name: 'UserAuthenticationMethod.ReadWrite.All',
description: 'Read and write all users\' authentication methods',
longDescription: 'Allows the app to read and write authentication methods of all users in your organization that the signed-in user has access to. Authentication methods include things like a user\'s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.',
preview: true,
admin: true
}
];

0 comments on commit dd647c9

Please sign in to comment.