From 575dee2adedaa789744a8d9c2c97bd6ff547e9ac Mon Sep 17 00:00:00 2001 From: Keith Kissal <99497673+kissalk@users.noreply.github.com> Date: Tue, 5 Mar 2024 18:18:36 -0500 Subject: [PATCH] Update auth.service.ts for Oauth removed /auth --- web/src/services/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/services/auth/auth.service.ts b/web/src/services/auth/auth.service.ts index 9b00c5a7a..3284ba025 100644 --- a/web/src/services/auth/auth.service.ts +++ b/web/src/services/auth/auth.service.ts @@ -14,7 +14,7 @@ interface TokenResponse { providedIn: 'root', }) export class AuthService { - private AUTH_ENDPOINT = 'https://oauth.nhsnlink.org/auth/realms/NHSNLink/protocol/openid-connect'; + private AUTH_ENDPOINT = 'https://oauth.nhsnlink.org/realms/NHSNLink/protocol/openid-connect'; private authStatus = new BehaviorSubject(this.isLoggedIn())