ENH: Collection filterings (#30)

Fixes #29
This commit is contained in:
Matthew Ryan Dillon 2017-11-10 11:16:17 -07:00 committed by GitHub
parent 4a37d35694
commit b8e7bb9bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 102 additions and 5 deletions

View file

@ -19,6 +19,7 @@ THIRD_PARTY_APPS = (
'rest_framework.authtoken',
'corsheaders',
'djoser',
'django_filters',
)
LOCAL_APPS = (
'ccdb.utils',
@ -43,6 +44,7 @@ MIDDLEWARE = (
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'ccdb.api.middleware.DeBracketifyMiddleware',
)
DEBUG = env.bool("DJANGO_DEBUG", False)