Skip to content

Commit

Permalink
fix: Allow null Organization.trial_expires_at in the model
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAmrich committed Oct 11, 2022
1 parent 11b69a9 commit dd95716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rossum_api/models/organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Organization:
organization_group: str
is_trial: bool
created_at: str
trial_expires_at: str
trial_expires_at: Optional[str] = None
expires_at: Optional[str] = None
oidc_provider: Optional[str] = None
ui_settings: dict = field(default_factory=dict)
Expand Down

0 comments on commit dd95716

Please sign in to comment.