Skip to content

Commit

Permalink
server/oauth2: allow nullable Organization avatar in authorize respon…
Browse files Browse the repository at this point in the history
…se schema
  • Loading branch information
frankie567 committed Aug 13, 2024
1 parent 9bf3134 commit 7877d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/polar/oauth2/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class AuthorizeUser(Schema):
class AuthorizeOrganization(Schema):
id: UUID4
slug: str
avatar_url: str
avatar_url: str | None = None


class AuthorizeResponseBase(Schema):
Expand Down

0 comments on commit 7877d55

Please sign in to comment.