Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ianliuwk1019 committed Jan 8, 2025
1 parent 612d8f6 commit dfe68fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/src/core/services/cognito.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import { lastValueFrom, Observable } from "rxjs";
import { getFakeUser } from "./mock-user";

export interface CognitoAuthToken {
id_token: { [id: string]: any }
access_token: { [id: string]: any }
jwtToken: CognitoUserSession
id_token: { [id: string]: any } // decoded jwt payload
access_token: { [id: string]: any } // decoded jwt payload
jwtToken: CognitoUserSession // original Cognito user session (tokens)
}

@Injectable({
Expand Down

0 comments on commit dfe68fd

Please sign in to comment.