Added Missing People Permission

This commit is contained in:
Nick Brown 2022-08-27 23:08:50 +01:00
parent b513709538
commit 811e0e5ebb
2 changed files with 40 additions and 4 deletions

View File

@ -9,18 +9,18 @@
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"developer": {
"name": "",
"websiteUrl": "",
"name": "Nick Brown",
"websiteUrl": "https://nbdev.uk",
"privacyUrl": "",
"termsOfUseUrl": "",
"mpnId": "Undefined-1.15.2"
},
"metadata": {
"shortDescription": {
"default": "Group Membership Manager description"
"default": "Group Membership Manager"
},
"longDescription": {
"default": "Group Membership Manager description"
"default": "Provides access to manage groups the user is an owner of in Azure Active Directory"
},
"screenshotPaths": [],
"videoUrl": "",
@ -46,6 +46,10 @@
{
"resource": "Microsoft Graph",
"scope": "Group.ReadWrite.All"
},
{
"resource": "Microsoft Graph",
"scope": "People.Read"
}
]
},

View File

@ -0,0 +1,32 @@
define([], function() {
return {
"AppLocalEnvironmentSharePoint": "The app is running on your local environment as SharePoint web part",
"AppLocalEnvironmentTeams": "The app is running on your local environment as Microsoft Teams app",
"AppSharePointEnvironment": "The app is running on SharePoint page",
"AppTeamsTabEnvironment": "The app is running in Microsoft Teams",
"LoadingGroups": "Loading Groups",
"PickGroup": "Pick a Group",
"DisplayName": "Display Name",
"GroupTypes": "Group Types",
"Visibility": "Visibility",
"SecurityEnabled": "Security Enabled",
"LoadingMembers": "Loading Members",
"LoadingOwners": "Loading Owners",
"Owners": "Owners",
"Members": "Members",
"Add": "Add",
"Remove": "Remove",
"AddDialogTitle": "Add users to ",
"AddDialogTitleOwner": "Add owners to ",
"Close": "Close",
"Search": "Search",
"SearchPlaceholder": "Start typing to search",
"Retry": "Retry",
"Adding": "Adding Users",
"Added": "Added to",
"Removing": "Removing Users",
"Removed": "Removed from",
"RemoveDialogTitle": "Remove users from ",
"RemoveDialogTitleOwner": "Remove owners from "
}
});