[notifications] Send mood check-in

This commit is contained in:
2025-07-30 18:30:18 -04:00
parent ae889bff7d
commit c452ac24e0
10 changed files with 104 additions and 14 deletions

View File

@ -56,6 +56,9 @@ class UserProfile(TimeStampedModel):
imap_pass = EncryptedField(**BNULL)
imap_auto_import = models.BooleanField(default=False)
mood_checkin_enabled = models.BooleanField(default=False)
mood_checkin_frequency = models.CharField(max_length=20, default="hourly")
ntfy_url = models.CharField(max_length=255, **BNULL)
ntfy_enabled = models.BooleanField(default=False)