[scrobbles] Add ntfy config to user profiles

This commit is contained in:
2024-11-05 14:29:58 -05:00
parent cc52e00d15
commit 2c1e8c08ae
17 changed files with 694 additions and 1 deletions

View File

@ -22,6 +22,10 @@ class LifeEvent(ScrobblableMixin):
def logdata_cls(self):
return LifeEventLogData
@property
def verb(self) -> str:
return "Experiencing"
@classmethod
def find_or_create(cls, title: str) -> "LifeEvent":
return cls.objects.filter(title=title).first()