summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/work_items/create_from_task.rb
diff options
context:
space:
mode:
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, 1 insertions, 1 deletions
diff --git a/app/graphql/mutations/work_items/create_from_task.rb b/app/graphql/mutations/work_items/create_from_task.rb
index 16d1e646167..278c1bc65a9 100644
--- a/app/graphql/mutations/work_items/create_from_task.rb
+++ b/app/graphql/mutations/work_items/create_from_task.rb
@@ -31,7 +31,7 @@ module Mutations
def resolve(id:, work_item_data:)
work_item = authorized_find!(id: id)
- unless Feature.enabled?(:work_items, work_item.project, default_enabled: :yaml)
+ unless work_item.project.work_items_feature_flag_enabled?
return { errors: ['`work_items` feature flag disabled for this project'] }
end