Skip to content

Commit

Permalink
Allow DELETE action on revoke in manifest serializer (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
GDay authored Aug 28, 2024
1 parent f788d9b commit a453ba8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions back/admin/integrations/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class ManifestExecuteSerializer(ValidateMixin, serializers.Serializer):
("GET", "GET"),
("POST", "POST"),
("PUT", "PUT"),
("DELETE", "DELETE"),
]
)
status_code = serializers.ListField(
Expand Down Expand Up @@ -108,6 +109,7 @@ class ManifestRevokeSerializer(ValidateMixin, serializers.Serializer):
("GET", "GET"),
("POST", "POST"),
("PUT", "PUT"),
("DELETE", "DELETE"),
]
)

Expand Down

0 comments on commit a453ba8

Please sign in to comment.