Skip to content

Commit

Permalink
fix: add missing directives (#20)
Browse files Browse the repository at this point in the history
wtf how could this happen
  • Loading branch information
Feyko authored Dec 11, 2022
1 parent aa61c6e commit 8c133f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schemas/bootstrap_version.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ extend type Query {
### Mutations

extend type Mutation {
createBootstrapVersion(bootstrapVersion: NewBootstrapVersion!): BootstrapVersion @isLoggedIn
createBootstrapVersion(bootstrapVersion: NewBootstrapVersion!): BootstrapVersion @canEditBootstrapVersions @isLoggedIn
updateBootstrapVersion(bootstrapVersionId: BootstrapVersionID!, bootstrapVersion: UpdateBootstrapVersion!): BootstrapVersion! @canEditBootstrapVersions @isLoggedIn
deleteBootstrapVersion(bootstrapVersionId: BootstrapVersionID!): Boolean! @canEditBootstrapVersions @isLoggedIn
}
2 changes: 1 addition & 1 deletion schemas/sml_version.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extend type Query {
### Mutations

extend type Mutation {
createSMLVersion(smlVersion: NewSMLVersion!): SMLVersion @isLoggedIn
createSMLVersion(smlVersion: NewSMLVersion!): SMLVersion @canEditSMLVersions @isLoggedIn
updateSMLVersion(smlVersionId: SMLVersionID!, smlVersion: UpdateSMLVersion!): SMLVersion! @canEditSMLVersions @isLoggedIn
deleteSMLVersion(smlVersionId: SMLVersionID!): Boolean! @canEditSMLVersions @isLoggedIn
}
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 8c133f3

Please sign in to comment.