Skip to content

Commit

Permalink
fix(quotes): missing delete permission
Browse files Browse the repository at this point in the history
  • Loading branch information
alexaor committed Jul 13, 2023
1 parent 6677a1f commit f629cb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quotes/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ class Meta:
class DeleteQuoteMutation(DjangoDeleteMutation):
class Meta:
model = Quote
permissions = ("quotes.delete_quote",)


class CreateQuoteVoteMutation(DjangoCreateMutation):
Expand Down

0 comments on commit f629cb3

Please sign in to comment.