Skip to content
Merged
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
7 changes: 6 additions & 1 deletion classes/output/core_renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,12 @@ public function get_global_header_data() {
error_log("theme_nhse: User not logged in, skipping OIDC token fetch.");
}

$url = 'https://lh-openapi.dev.local/User/GetLHUserNavigation';
// --- The rest of your existing API call logic ---
$api_endpoint_path = 'User/GetLHUserNavigation';
$url = $api_base_url . $api_endpoint_path;



try
{
$curl = new \curl();
Expand Down