diff --git a/libs/common/src/auth/send-access/services/send-token.service.ts b/libs/common/src/auth/send-access/services/send-token.service.ts index 0d2e94f9801..18864861a4c 100644 --- a/libs/common/src/auth/send-access/services/send-token.service.ts +++ b/libs/common/src/auth/send-access/services/send-token.service.ts @@ -24,6 +24,8 @@ export class SendTokenService implements SendTokenServiceAbstraction { ) {} async getSendAccessToken(sendId: string, sendCredentials?: SendAccessCredentials): Promise { - // TODO: first + // TODO: check in storage for the access token and if it is expired. + // If it is expired, we will need to request a new token from the server. + // If it is not expired, we will return the token from storage. } }