Fix DEFAULT_FILTER_BACKENDS setting.

This commit is contained in:
Santiago L 2021-02-19 13:10:00 +01:00
parent 8079de4e76
commit da29e86860
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ REST_FRAMEWORK = {
'rest_framework.authentication.TokenAuthentication', 'rest_framework.authentication.TokenAuthentication',
), ),
'DEFAULT_FILTER_BACKENDS': ( 'DEFAULT_FILTER_BACKENDS': (
('rest_framework.filters.DjangoFilterBackend',) ('django_filters.rest_framework.DjangoFilterBackend',)
), ),
} }