[bricksets] Add brick set scrobble type

This commit is contained in:
2024-09-07 02:02:16 -04:00
parent 14062f3b60
commit 7e961076b4
17 changed files with 312 additions and 3 deletions

View File

@ -96,6 +96,11 @@ class ScrobblableMixin(TimeStampedModel):
def find_or_create(cls) -> None:
logger.warning("find_or_create() not implemented yet")
def __str__(self):
if self.title:
return self.title
return str(self.uuid)
class LongPlayScrobblableMixin(ScrobblableMixin):
class Meta: