Skip to content

Commit

Permalink
Remove NonDebuggable from Microsoft Graph Client (#1040)
Browse files Browse the repository at this point in the history
#### Summary <!-- Provide a general summary of your changes -->
Remove NonDebuggable from Graph client to enable easier debugging

#### Work Item(s)
Partially fixes #875

Fixes
[AB#524277](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/524277)
  • Loading branch information
pri-kise authored May 16, 2024
1 parent 762389b commit b298fc4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,11 @@ codeunit 9357 "Graph Auth. Client Credentials" implements "Graph Authorization"

var
ClientCredentialsTokenAuthorityUrlTxt: Label 'https://login.microsoftonline.com/%1/oauth2/v2.0/token', Comment = '%1 = AAD tenant ID', Locked = true;
[NonDebuggable]
Scopes: List of [Text];
[NonDebuggable]
ClientSecret: SecretText;
[NonDebuggable]
AadTenantId: Text;
[NonDebuggable]
[NonDebuggable]
ClientId: Text;

[NonDebuggable]
procedure SetParameters(NewAadTenantId: Text; NewClientId: Text; NewClientSecret: SecretText; NewScopes: List of [Text])
begin
AadTenantId := NewAadTenantId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ codeunit 9350 "Graph Client"
InherentPermissions = X;

var
[NonDebuggable]
GraphClientImpl: Codeunit "Graph Client Impl.";

/// <summary>
Expand Down

0 comments on commit b298fc4

Please sign in to comment.