Skip to content

Commit

Permalink
fix(server): make scope field optional in access token response (#8753)
Browse files Browse the repository at this point in the history
Co-authored-by: DarkSky <[email protected]>
  • Loading branch information
js-0s and darkskygit authored Nov 9, 2024
1 parent d6618b6 commit e2f281a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const OIDCTokenSchema = z.object({
access_token: z.string(),
expires_in: z.number(),
refresh_token: z.string(),
scope: z.string(),
scope: z.string().optional(),
token_type: z.string(),
});

Expand Down

0 comments on commit e2f281a

Please sign in to comment.