From 3638464e8277a5c232d8d70d69f5c85d797eef3e Mon Sep 17 00:00:00 2001 From: Jared Snider Date: Thu, 20 Mar 2025 15:24:27 -0400 Subject: [PATCH] OpaqueKeyExchangeApiService - move registration methods back to API so we can secure them with authorize attribute. --- .../common/src/auth/opaque/opaque-key-exchange-api.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/common/src/auth/opaque/opaque-key-exchange-api.service.ts b/libs/common/src/auth/opaque/opaque-key-exchange-api.service.ts index bdfd291e927..2067bf7a606 100644 --- a/libs/common/src/auth/opaque/opaque-key-exchange-api.service.ts +++ b/libs/common/src/auth/opaque/opaque-key-exchange-api.service.ts @@ -26,7 +26,7 @@ export class OpaqueKeyExchangeApiService { request, true, true, - env.getIdentityUrl(), + env.getApiUrl(), ); return new RegistrationStartResponse(response); } @@ -41,7 +41,7 @@ export class OpaqueKeyExchangeApiService { request, true, true, - env.getIdentityUrl(), + env.getApiUrl(), ); return new RegistrationFinishResponse(response); }