From 247edc89f077227b92d06edbca3dcd4bb0d757a8 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Thu, 25 Feb 2021 16:04:45 +0100 Subject: [PATCH] fix default api version --- src/paperless/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 48712954c..3dcff4a89 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -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'] }