remove django filters (module)

This commit is contained in:
Francesco Esposito 2019-11-23 12:25:13 +01:00
parent 903e806761
commit 5e7f9c94ce
2 changed files with 1 additions and 4 deletions

View File

@ -1,7 +1,6 @@
astroid==2.3.3 astroid==2.3.3
Django==2.2.7 Django==2.2.7
django-cors-headers==3.2.0 django-cors-headers==3.2.0
django-filter==2.2.0
djangorestframework==3.10.3 djangorestframework==3.10.3
isort==4.3.21 isort==4.3.21
lazy-object-proxy==1.4.3 lazy-object-proxy==1.4.3

View File

@ -39,7 +39,6 @@ INSTALLED_APPS = [
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'rest_framework', 'rest_framework',
'corsheaders', 'corsheaders',
'django_filters',
'segnalibre_app' 'segnalibre_app'
] ]
@ -130,6 +129,5 @@ CORS_ORIGIN_WHITELIST = [
REST_FRAMEWORK = { REST_FRAMEWORK = {
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination', 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
'PAGE_SIZE': 10, 'PAGE_SIZE': 10
'DEFAULT_FILTER_BACKENDS': ['django_filters.rest_framework.DjangoFilterBackend']
} }