Skip to content

Commit a117c55

Browse files
author
st195469
committed
fix permission documentation for issue board item mutations
1 parent bc25578 commit a117c55

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

api-public/src/main/kotlin/gropius/schema/mutation/IssueMutations.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ class IssueMutations(
621621
}
622622

623623
@GraphQLDescription(
624-
"""Creates a new Issue Board Item on an Issue Board. Requires MANAGE_ISSUE_BOARDS on the target Issue Board.
624+
"""Creates a new Issue Board Item on an Issue Board. Requires MANAGE_ISSUES on the parent Trackable.
625625
"""
626626
)
627627
@AutoPayloadType("The created Issue Board Item")
@@ -632,7 +632,7 @@ class IssueMutations(
632632
return issueBoardItemService.createIssueBoardItem(dfe.gropiusAuthorizationContext, input)
633633
}
634634

635-
@GraphQLDescription("Updates the specified Issue Board Item, Requires MANAGE_ISSUE_BOARDS on the parent trackable.")
635+
@GraphQLDescription("Updates the specified Issue Board Item, Requires MANAGE_ISSUES on the parent Trackable.")
636636
@AutoPayloadType("The updated Issue Board Item")
637637
suspend fun updateIssueBoardItem(
638638
@GraphQLDescription("Defines which Issue Board Item to update and how to update it")
@@ -643,7 +643,7 @@ class IssueMutations(
643643

644644

645645
@GraphQLDescription(
646-
"""Deletes the Issue Board Item, requires MANAGE_ISSUE_BOARDS on the parent trackable.
646+
"""Deletes the Issue Board Item, requires MANAGE_ISSUES on the parent Trackable.
647647
"""
648648
)
649649
suspend fun deleteIssueBoardItem(

0 commit comments

Comments
 (0)