mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +01:00
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 9c2eebc4-dcd5-4b85-8113-90772d818900
14 lines
320 B
AL
14 lines
320 B
AL
codeunit 50214 "Sec Sample NonDebug Bad"
|
|
{
|
|
procedure CallLegacyOnPremisesConsumer(ApiKey: SecretText)
|
|
var
|
|
PlainApiKey: Text;
|
|
begin
|
|
PlainApiKey := ApiKey.Unwrap();
|
|
InvokeLegacyConsumer(PlainApiKey);
|
|
end;
|
|
|
|
local procedure InvokeLegacyConsumer(ApiKey: Text)
|
|
begin
|
|
end;
|
|
}
|