Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,14 @@ codeunit 6723 "Server Setting"
begin
exit(ServerSettingImpl.GetEnableMembershipEntitlement());
end;

/// <summary>Returns whether the tenant's hosting Azure geography is within the Microsoft EU Data Boundary.</summary>
/// <returns>True if the tenant is in the EU Data Boundary; otherwise false.</returns>
/// <remarks>Backed by ServerUserSettings.AzureGeography on the BC platform. This is independent from the Copilot/CAPI-level EUDB check and may legitimately differ from it.</remarks>
[Scope('OnPrem')]
procedure GetIsTenantInEUDB(): Boolean
begin
exit(ServerSettingImpl.GetIsTenantInEUDB());
end;
}

Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,11 @@ codeunit 3703 "Server Setting Impl."
InitializeConfigSettings();
exit(ALConfigSettings.IsSaaS());
end;

procedure GetIsTenantInEUDB(): Boolean
begin
InitializeConfigSettings();
exit(ALConfigSettings.IsTenantInEUDB());
end;
}

Loading