Codeunit 7776 Copilot Capability Upgrade in 26

App
System Application
Namespace
System.AI

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/AI/src/Copilot/CopilotCapabilityUpgrade.Codeunit.al19 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.AI;

codeunit 7776 "Copilot Capability Upgrade"
{
    Subtype = Upgrade;
    InherentEntitlements = X;
    InherentPermissions = X;

    trigger OnUpgradePerDatabase()
    var
        CopilotCapabilityInstall: Codeunit "Copilot Capability Install";
    begin
        CopilotCapabilityInstall.RegisterCapabilities();
    end;
}