Added Missing People Permission
This commit is contained in:
parent
b513709538
commit
811e0e5ebb
|
@ -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"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
32
samples/react-group-membership-manager/src/webparts/groupMembershipManager/loc/en-gb.js
vendored
Normal file
32
samples/react-group-membership-manager/src/webparts/groupMembershipManager/loc/en-gb.js
vendored
Normal 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 "
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue