[scrobbles] Allow Bearer or Token
All checks were successful
build & deploy / test (push) Successful in 1m40s
build & deploy / deploy (push) Successful in 23s

This commit is contained in:
2026-03-31 14:43:22 -04:00
parent 3058bfdd22
commit 59998ac849
2 changed files with 3 additions and 7 deletions

View File

@ -93,7 +93,7 @@ logger = logging.getLogger(__name__)
class WebhookView(APIView):
permission_classes = [IsAuthenticated]
authentication_classes = [BearerTokenAuthentication]
authentication_classes = [TokenAuthentication, BearerTokenAuthentication]
@property
def logger(self):