Skip to content

Commit

Permalink
changed field from str to bool
Browse files Browse the repository at this point in the history
  • Loading branch information
renzodgc committed Nov 23, 2020
1 parent 8ec06f0 commit a3c0058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/models/config_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class NotificationConfig(SnakeModel):
violationThreshold: Optional[int] = Field(0, example=100)
notifyEveryMinutes: Optional[int] = Field(0, example=15)
emails: Optional[str] = Field("", example='john@email.com,doe@email.com')
enableSlackNotifications: Optional[str] = Field(False, example=False)
enableSlackNotifications: Optional[bool] = Field(False, example=False)
dailyReport: Optional[bool] = Field(False, example=True)
dailyReportTime: Optional[str] = Field('06:00', example='06:00')

Expand Down

0 comments on commit a3c0058

Please sign in to comment.