CSRF backend issue fixed. If cookies are maintained, it seems to work.

This commit is contained in:
kououken 2019-02-03 18:30:42 -08:00
parent 20d0c48839
commit c8ae149510
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -54,8 +54,8 @@ REST_FRAMEWORK = {
'rest_framework.permissions.IsAuthenticated',
],
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework.authentication.SessionAuthentication',
'reimbursinator.custom_auth.BearerAuthentication',
'rest_framework.authentication.SessionAuthentication',
],
}