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

Added Brickwall permissions #420

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/app/scopes-dialog/scopes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,20 @@ export const PermissionScopes: IPermissionScope[] = [
preview: false,
admin: false,
},
{
name: 'ConsentRequest.Read.All',
description: 'Read consent requests',
longDescription: 'Allows the app to read consent requests and approvals on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'ConsentRequest.ReadWrite.All',
description: 'Read and write consent requests',
longDescription: 'Allows the app to read app consent requests and approvals, and deny or approve those requests on behalf of the signed-in user.',
preview: true,
admin: true,
},
{
name: 'Contacts.Read',
description: 'Read user contacts',
Expand Down Expand Up @@ -863,6 +877,14 @@ export const PermissionScopes: IPermissionScope[] = [
preview: true,
admin: true
},
{
name: 'Policy.ReadWrite.ConsentRequest',
description: 'Read and write consent request policy',
longDescription:
'Allows the app to read and write your organization's consent requests policy on behalf of the signed-in user.',
preview: true,
admin: true
},
{
name: 'Policy.ReadWrite.PermissionGrant',
description: 'Manage consent and permission grant policies',
Expand Down