Codeunit 7782 Copilot Telemetry Install in 26

App
System Application
Namespace
System.AI

Versions171819202122232425262728latest

Source2526272829

Source in 26

src/System Application/App/AI/src/Copilot/CopilotTelemetryInstall.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 7782 "Copilot Telemetry Install"
{
    Subtype = Install;
    InherentEntitlements = X;
    InherentPermissions = X;

    trigger OnInstallAppPerDatabase()
    var
        CopilotTelemetryUpgrade: Codeunit "Copilot Telemetry Upgrade";
    begin
        CopilotTelemetryUpgrade.SendCopilotDataMovementUpgradeTelemetry();
    end;
}