Clean up how we scrobble videos

This commit is contained in:
2023-03-13 03:22:44 -04:00
parent f504d9f2a1
commit 52fc67803a
8 changed files with 271 additions and 110 deletions

View File

@ -33,6 +33,8 @@ DEBUG = os.getenv("VROBBLER_DEBUG", False)
TESTING = len(sys.argv) > 1 and sys.argv[1] == "test"
TAGGIT_CASE_INSENSITIVE = True
KEEP_DETAILED_SCROBBLE_LOGS = os.getenv(
"VROBBLER_KEEP_DETAILED_SCROBBLE_LOGS", False
)
@ -91,6 +93,7 @@ INSTALLED_APPS = [
"django.contrib.humanize",
"django_filters",
"django_extensions",
"taggit",
"rest_framework.authtoken",
"encrypted_field",
"profiles",