Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-05-10 21:08:27 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-10 21:08:27 +0300
commit56b3925584320c4406b7cb961fbe19ff9f9c41d4 (patch)
treeea7fdd802d958c585ecf46045ccf1db52417b096 /app/graphql/mutations/work_items/create_from_task.rb
parent758b97662c5a6af41357cec7e25fc8cddadd8b9c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/graphql/mutations/work_items/create_from_task.rb')
-rw-r--r--app/graphql/mutations/work_items/create_from_task.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/graphql/mutations/work_items/create_from_task.rb b/app/graphql/mutations/work_items/create_from_task.rb
index 278c1bc65a9..4da709401a6 100644
--- a/app/graphql/mutations/work_items/create_from_task.rb
+++ b/app/graphql/mutations/work_items/create_from_task.rb
@@ -55,8 +55,6 @@ module Mutations
private
def find_object(id:)
- # TODO: Remove coercion when working on https://gitlab.com/gitlab-org/gitlab/-/issues/257883
- id = ::Types::GlobalIDType[::WorkItem].coerce_isolated_input(id)
GitlabSchema.find_by_gid(id)
end
end