Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.MCP;

permissionset 8352 "MCP - Admin"
{
Access = Public;
Assignable = true;
Caption = 'MCP - Admin';

IncludedPermissionSets = "MCP - Read";

Permissions = tabledata "MCP Configuration" = IMD,
tabledata "MCP Configuration Tool" = IMD;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permissionset 8350 "MCP - Objects"
{
Access = Internal;
Assignable = false;
Caption = 'MCP - Objects';

Permissions = codeunit "MCP Config" = X,
codeunit "MCP Config Implementation" = X,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.MCP;

permissionset 8351 "MCP - Read"
{
Access = Internal;
Assignable = false;
Caption = 'MCP - Read';

IncludedPermissionSets = "MCP - Objects";

Permissions = tabledata "MCP Configuration" = R,
tabledata "MCP Configuration Tool" = R;
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ using System.Security.User;
using System.Integration.Word;
using System.Feedback;
using System.Apps;
using System.MCP;

permissionset 21 "System Application - Read"
{
Expand All @@ -43,6 +44,7 @@ permissionset 21 "System Application - Read"
"File Storage - Read",
"Guided Experience - Read",
"Headlines - Read",
"MCP - Read",
"Object Selection - Read",
"Page Summary Provider - Read",
"Page Action Provider - Read",
Expand Down
Loading