diff --git a/authentik/root/settings.py b/authentik/root/settings.py index dcf263d91c75..dcfeae4a2f0c 100644 --- a/authentik/root/settings.py +++ b/authentik/root/settings.py @@ -1,11 +1,11 @@ """root settings for authentik""" import importlib -import orjson from collections import OrderedDict from hashlib import sha512 from pathlib import Path +import orjson from celery.schedules import crontab from django.conf import ImproperlyConfigured from sentry_sdk import set_tag @@ -179,9 +179,6 @@ "rest_framework.filters.OrderingFilter", "rest_framework.filters.SearchFilter", ], - "DEFAULT_PARSER_CLASSES": [ - "rest_framework.parsers.JSONParser", - ], "DEFAULT_PERMISSION_CLASSES": ("authentik.rbac.permissions.ObjectPermissions",), "DEFAULT_AUTHENTICATION_CLASSES": ( "authentik.api.authentication.TokenAuthentication",