Skip to content

Commit

Permalink
Update application and platform versions to 25.0.0.0; modify BlobStor…
Browse files Browse the repository at this point in the history
…ageConnectorImpl to use Authorization Type directly
  • Loading branch information
IceOnly committed Dec 15, 2024
1 parent 192a487 commit 579b36a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions Apps/W1/File - Azure Blob Service Connector/app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@
"help": "https://go.microsoft.com/fwlink/?linkid=2134520",
"url": "https://go.microsoft.com/fwlink/?linkid=724011",
"logo": "ExtensionLogo.png",
"application": "24.0.0.0",
"application": "25.0.0.0",
"internalsVisibleTo": [],
"dependencies": [],
"screenshots": [],
"platform": "24.0.0.0",
"platform": "25.0.0.0",
"idRanges": [
{
"from": 80100,
"to": 80199
}
],
"target": "OnPrem",
"resourceExposurePolicy": {
"allowDebugging": false,
"allowDownloadingSource": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ page 80101 "Blob Storage Account Wizard"
BlobStorageConnectorImpl: Codeunit "Blob Storage Connector Impl.";
begin
CurrPage.Update();
BlobStorageConnectorImpl.LookUpContainer(Rec, "Authorization Type", Secret, Text);
BlobStorageConnectorImpl.LookUpContainer(Rec, Rec."Authorization Type", Secret, Text);
exit(true);
end;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -475,11 +475,10 @@ codeunit 80100 "Blob Storage Connector Impl." implements "File System Connector"
FilePaginationData.SetEndOfListing(ABSOperationResponse.GetNextMarker() = '');
end;


[NonDebuggable]
local procedure SetReadySAS(var StorageServiceAuthorization: Codeunit "Storage Service Authorization"; Secret: SecretText): Interface System.Azure.Storage."Storage Service Authorization"
begin
exit(StorageServiceAuthorization.UseReadySAS(Secret.Unwrap()));
exit(StorageServiceAuthorization.UseReadySAS(Secret));
end;

local procedure PathSeparator(): Text
Expand Down

0 comments on commit 579b36a

Please sign in to comment.