mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
* Correct security and privacy guidance Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 9c2eebc4-dcd5-4b85-8113-90772d818900 * Address security privacy review findings Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 9c2eebc4-dcd5-4b85-8113-90772d818900 --------- Co-authored-by: Jesper Schulz-Wedde <jesper.schulzwedde@microsoft.com>
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;
|
|
}
|