Move "rest_framework" in THIRD_PARTY_APPS

This commit is contained in:
Bruno Alla 2020-03-15 19:20:44 +00:00
parent 729cd2adab
commit 530868d072

View File

@ -75,11 +75,11 @@ THIRD_PARTY_APPS = [
"allauth", "allauth",
"allauth.account", "allauth.account",
"allauth.socialaccount", "allauth.socialaccount",
"rest_framework",
{%- if cookiecutter.use_celery == 'y' %} {%- if cookiecutter.use_celery == 'y' %}
"django_celery_beat", "django_celery_beat",
{%- endif %} {%- endif %}
{%- if cookiecutter.use_drf == "y" %} {%- if cookiecutter.use_drf == "y" %}
"rest_framework",
"rest_framework.authtoken", "rest_framework.authtoken",
{%- endif %} {%- endif %}
] ]