Skip to content

Commit

Permalink
fix: require tag manager role for creating tags
Browse files Browse the repository at this point in the history
  • Loading branch information
budak7273 committed Dec 22, 2023
1 parent 61fac18 commit b3db043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schemas/tags.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extend type Query {
### Mutations

extend type Mutation {
createTag(tagName: TagName!): Tag @isLoggedIn
createTag(tagName: TagName!): Tag @canManageTags @isLoggedIn
createMultipleTags(tagNames: [TagName!]!): [Tag!]! @canManageTags @isLoggedIn
updateTag(tagID: TagID!, NewName: TagName!): Tag! @canManageTags @isLoggedIn
deleteTag(tagID: TagID!): Boolean! @canManageTags @isLoggedIn
Expand Down

0 comments on commit b3db043

Please sign in to comment.