[tags] Add tags to scrobble media models
Some checks failed
build & deploy / test (push) Failing after 1m19s
build & deploy / deploy (push) Has been skipped

This commit is contained in:
2026-03-26 17:32:47 -04:00
parent 931246e043
commit 3d2f3cbe71
21 changed files with 493 additions and 1 deletions

View File

@ -60,6 +60,7 @@ class ScrobblableMixin(TimeStampedModel):
base_run_time_seconds = models.IntegerField(**BNULL)
genre = TaggableManager(through=ObjectWithGenres, blank=True)
tags = TaggableManager(blank=True)
class Meta:
abstract = True