enabled session auth again, useful for the browsable rest api

This commit is contained in:
Jonas Winkler 2020-10-29 22:33:43 +01:00
parent 505396bc5a
commit 31502e897b

View File

@ -101,6 +101,7 @@ INSTALLED_APPS = [
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework.authentication.BasicAuthentication',
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.TokenAuthentication',
'paperless.auth.QueryTokenAuthentication'
],