Skip to content

Commit 32daa00

Browse files
committed
🛠️ models.py -> Added ReportingCadence for reporting cadences.
1 parent 08b094c commit 32daa00

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/signals/models.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ class TimeTypeChoices(models.TextChoices):
1212
WEEK = 'week', _('Week')
1313

1414

15+
class ReportingCadence(models.TextChoices):
16+
"""
17+
A class representing choices for reporting cadences.
18+
"""
19+
DAILY = 'daily', _('Daily')
20+
WEEKLY = 'weekly', _('Weekly')
21+
22+
1523
class TimeLabelChoices(models.TextChoices):
1624
"""
1725
A class representing choices for time labels.

0 commit comments

Comments
 (0)