Skip to content

Commit

Permalink
Merge pull request #862 from dimagi/sk/schedule-minutes
Browse files Browse the repository at this point in the history
add 'minutes' to the scheduling time period options
  • Loading branch information
snopoke authored Nov 14, 2024
2 parents 273c116 + f598270 commit ea211e0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/events/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ def get_fields_to_exclude(self):


class TimePeriod(models.TextChoices):
MINUTES = ("minutes", "Minutes")
HOURS = ("hours", "Hours")
DAYS = ("days", "Days")
WEEKS = ("weeks", "Weeks")
Expand Down

0 comments on commit ea211e0

Please sign in to comment.