Add CircleGroup notifications to chore notifications

This commit is contained in:
Mo Tarbin 2024-07-17 01:09:47 -04:00
parent 12aaa90387
commit c7b29fa195
3 changed files with 78 additions and 11 deletions

View file

@ -51,10 +51,12 @@ type FrequencyMetadata struct {
}
type NotificationMetadata struct {
DueDate bool `json:"dueDate,omitempty"`
Completion bool `json:"completion,omitempty"`
Nagging bool `json:"nagging,omitempty"`
PreDue bool `json:"predue,omitempty"`
DueDate bool `json:"dueDate,omitempty"`
Completion bool `json:"completion,omitempty"`
Nagging bool `json:"nagging,omitempty"`
PreDue bool `json:"predue,omitempty"`
CircleGroup bool `json:"circleGroup,omitempty"`
CircleGroupID *int64 `json:"circleGroupID,omitempty"`
}
type Tag struct {