We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c61a293 + 89ca537 commit ddfdb6eCopy full SHA for ddfdb6e
classes/output/core_renderer.php
@@ -116,7 +116,12 @@ public function get_global_header_data() {
116
error_log("theme_nhse: User not logged in, skipping OIDC token fetch.");
117
}
118
119
- $url = 'https://lh-openapi.dev.local/User/GetLHUserNavigation';
+ // --- The rest of your existing API call logic ---
120
+ $api_endpoint_path = 'User/GetLHUserNavigation';
121
+ $url = $api_base_url . $api_endpoint_path;
122
+
123
124
125
try
126
{
127
$curl = new \curl();
0 commit comments