Add generalized cover field for scobblable things

This commit is contained in:
2023-03-22 18:27:04 -04:00
parent bc59ff66eb
commit 15be4e0068
11 changed files with 680 additions and 13 deletions

View File

@ -43,6 +43,11 @@ class ScrobblableMixin(TimeStampedModel):
class Meta:
abstract = True
@property
def primary_image_url(self) -> str:
logger.warn(f"Not implemented yet")
return ""
def fix_metadata(self):
logger.warn("fix_metadata() not implemented yet")