From 8e5d03cb8614ae89a6e5bea990fd2d0fb12edc6b Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 12 May 2021 16:41:54 +0200 Subject: [PATCH] outposts: remove legacy API Signed-off-by: Jens Langhammer --- authentik/outposts/api/outposts.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/authentik/outposts/api/outposts.py b/authentik/outposts/api/outposts.py index 7268cfdf6..d026fa503 100644 --- a/authentik/outposts/api/outposts.py +++ b/authentik/outposts/api/outposts.py @@ -18,8 +18,6 @@ class OutpostSerializer(ModelSerializer): """Outpost Serializer""" config = JSONField(validators=[is_dict], source="_config") - # TODO: Remove _config again, this is only here for legacy with older outposts - _config = JSONField(validators=[is_dict], read_only=True) providers_obj = ProviderSerializer(source="providers", many=True, read_only=True) def validate_config(self, config) -> dict: @@ -42,7 +40,6 @@ class OutpostSerializer(ModelSerializer): "service_connection", "token_identifier", "config", - "_config", ]