Add book scrobbling

This commit is contained in:
2023-02-19 22:19:01 -05:00
parent f4a444354d
commit 6ef8238442
16 changed files with 729 additions and 125 deletions

View File

@ -16,7 +16,7 @@ class UserProfile(TimeStampedModel):
User, on_delete=models.CASCADE, related_name="profile"
)
timezone = models.CharField(
max_length=255, choices=PRETTY_TIMEZONE_CHOICES
max_length=255, choices=PRETTY_TIMEZONE_CHOICES, default=pytz.UTC
)
lastfm_username = models.CharField(max_length=255, **BNULL)
lastfm_password = EncryptedField(**BNULL)