diff --git a/apps/common/mixins.py b/apps/common/mixins.py index 694e78d50..b46673cd6 100644 --- a/apps/common/mixins.py +++ b/apps/common/mixins.py @@ -224,7 +224,7 @@ class ApiMessageMixin: def dispatch(self, request, *args, **kwargs): resp = super().dispatch(request, *args, **kwargs) - if request.method.lower() in ("get", "delete"): + if request.method.lower() in ("get", "delete", "patch"): return resp if resp.status_code >= 400: return resp