diff --git a/configs/views.py b/configs/views.py index 4d2b348..b72934d 100644 --- a/configs/views.py +++ b/configs/views.py @@ -57,4 +57,4 @@ def get_config(request): config = Config.objects.filter(stage=stage, project__name=project, name=name).first() if config is None: return HttpResponse('', status=404) - return JsonResponse(config.data) + return JsonResponse(config.data, safe=False)