[moods] Checkin notification should use correct link

This commit is contained in:
2026-05-27 21:52:40 -04:00
parent 2100cedc1a
commit 88fd0ed7f8

View File

@ -83,7 +83,7 @@ class MoodNtfyNotification(BasicNtfyNotification):
def __init__(self, profile, **kwargs):
super().__init__(profile)
self.ntfy_str: str = "Would you like to check in about your mood?"
self.click_url = self.url_tmpl.format(path=reverse("moods:mood_list"))
self.click_url = self.url_tmpl.format(path=reverse("moods:checkin"))
self.title = "Mood Check-in!"
def send(self):