chore: hard delete favorites (#5282)

This commit is contained in:
Bavisetti Narayan 2024-08-01 13:13:43 +05:30 committed by GitHub
parent ee76cb1dc7
commit b381331b75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -474,5 +474,5 @@ class IssueViewFavoriteViewSet(BaseViewSet):
entity_type="view",
entity_identifier=view_id,
)
view_favorite.delete()
view_favorite.delete(soft=False)
return Response(status=status.HTTP_204_NO_CONTENT)