From da29e8686096b158c5a7f8585d237542a1ece083 Mon Sep 17 00:00:00 2001 From: Santiago Lamora Date: Fri, 19 Feb 2021 13:10:00 +0100 Subject: [PATCH] Fix DEFAULT_FILTER_BACKENDS setting. --- orchestra/conf/project_template/project_name/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestra/conf/project_template/project_name/settings.py b/orchestra/conf/project_template/project_name/settings.py index 571f8762..209d91a4 100644 --- a/orchestra/conf/project_template/project_name/settings.py +++ b/orchestra/conf/project_template/project_name/settings.py @@ -228,7 +228,7 @@ REST_FRAMEWORK = { 'rest_framework.authentication.TokenAuthentication', ), 'DEFAULT_FILTER_BACKENDS': ( - ('rest_framework.filters.DjangoFilterBackend',) + ('django_filters.rest_framework.DjangoFilterBackend',) ), }