Permission set 2500 Extension Management - Read in 27

App
System Application
Namespace
System.Apps

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Extension Management/permissions/ExtensionManagementRead.PermissionSet.al24 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Apps;

using System.Environment;
using System.Environment.Configuration;

permissionset 2500 "Extension Management - Read"
{
    Access = Public;
    Assignable = false;

    IncludedPermissionSets = "Extension Management - Objects";

    Permissions = tabledata "Application Object Metadata" = r,
                  tabledata Media = r,
                  tabledata "NAV App Installed App" = r,
                  tabledata "NAV App Setting" = r,
                  tabledata "NAV App Tenant Operation" = r,
                  tabledata "Published Application" = r;
}