Permission set 535 Language - View, source in 24

Source242526272829metadata in 24

src/System Application/App/Language/permissions/LanguageView.PermissionSet.al22 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.Globalization;

using System.Environment.Configuration;

/// <summary>
/// This permission set allows you to view the language list and set the preferred language for the user
/// </summary>
permissionset 535 "Language - View"
{
    Access = Public;
    Assignable = false;

    IncludedPermissionSets = "Language - Objects";

    Permissions = tabledata "User Personalization" = im;
}