Skip to content

Commit

Permalink
fix: type of jwt aud field
Browse files Browse the repository at this point in the history
  • Loading branch information
pamapa committed Nov 3, 2021
1 parent 2575030 commit a1337d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/JwtUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Logger } from "./Log";

export interface JwtPayload {
iss?: string;
aud?: string;
aud?: string | string[];
azp?: string;
iat?: number;
nbf?: number;
Expand Down

0 comments on commit a1337d4

Please sign in to comment.