fix default api version

This commit is contained in:
jonaswinkler 2021-02-25 16:04:45 +01:00
parent 0fa9d71da8
commit 247edc89f0

View File

@ -114,7 +114,7 @@ REST_FRAMEWORK = {
'rest_framework.authentication.TokenAuthentication'
],
'DEFAULT_VERSIONING_CLASS': 'rest_framework.versioning.AcceptHeaderVersioning',
'DEFAULT_VERSION': 'v1',
'DEFAULT_VERSION': '1',
'ALLOWED_VERSIONS': ['1', '2']
}