99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
# File 'app/graphql/mutations/work_items/create.rb', line 99
def resolve(project_path: nil, namespace_path: nil, **attributes)
Gitlab::QueryLimiting.disable!('https://gitlab.com/gitlab-org/gitlab/-/issues/578961')
container_path = project_path || namespace_path
container = authorized_find!(container_path)
params = params_with_work_item_type(attributes).merge(author_id: current_user.id,
scope_validator: context[:scope_validator])
params = params_with_resolve_discussion_params(params)
type = params[:work_item_type]
raise_resource_not_available_error! unless type
check_feature_available!(container, type, params)
widget_params = (type, params, container)
create_result = ::WorkItems::CreateService.new(
container: container,
current_user: current_user,
params: params,
widget_params: widget_params
).execute
check_spam_action_response!(create_result[:work_item]) if create_result[:work_item]
{
work_item: create_result.success? ? create_result[:work_item] : nil,
errors: create_result.errors
}
end
|