Codeunit 1332 Template Feature Mgt., source in 29

Source29

src/Layers/W1/BaseApp/Utilities/TemplateFeatureMgt.Codeunit.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 Microsoft.Utilities;

codeunit 1332 "Template Feature Mgt."
{
    trigger OnRun()
    begin
    end;

    procedure IsEnabled() Result: Boolean
    begin
        Result := true;
        OnAfterIsEnabled(Result);
    end;

    [IntegrationEvent(false, false)]
    local procedure OnAfterIsEnabled(var Result: Boolean)
    begin
    end;
}