From 67285507a22a96c92e551cb5b126586dc5318916 Mon Sep 17 00:00:00 2001 From: Jared Snider Date: Thu, 5 Jun 2025 12:52:21 -0400 Subject: [PATCH] PM-20532 - Update comment --- .../src/auth/models/request/identity-token/token.request.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libs/common/src/auth/models/request/identity-token/token.request.ts b/libs/common/src/auth/models/request/identity-token/token.request.ts index 0bf5aa8d47d..d2982ede206 100644 --- a/libs/common/src/auth/models/request/identity-token/token.request.ts +++ b/libs/common/src/auth/models/request/identity-token/token.request.ts @@ -3,9 +3,7 @@ import { DeviceRequest } from "./device.request"; import { TokenTwoFactorRequest } from "./token-two-factor.request"; -// TODO Consider scoping this token request to the Bitwarden API -// This allows us to create a SendTokenRequest that is scoped to the Send API -// and not the entire Bitwarden API +// Base token request for normal user focused identity server token endpoint requests. export abstract class TokenRequest { protected device?: DeviceRequest; protected authRequest: string;