Skip to content
代码片段 群组 项目
提交 cc717678 编辑于 作者: Rémy Coutable's avatar Rémy Coutable
浏览文件

Merge branch...

Merge branch '371710-foss-master-broken-in-spec-graphql-resolvers-group_issues_resolver_spec-rb' into 'master'

Fix NoMethodError in IssueResolverArguments

See merge request gitlab-org/gitlab!96149
No related branches found
No related tags found
无相关合并请求
......@@ -84,6 +84,8 @@ def resolve_with_lookahead(**args)
end
def ready?(**args)
args[:not] = args[:not].to_h if args[:not].present?
params_not_mutually_exclusive(args, mutually_exclusive_assignee_username_args)
params_not_mutually_exclusive(args, mutually_exclusive_milestone_args)
params_not_mutually_exclusive(args.fetch(:not, {}), mutually_exclusive_milestone_args)
......@@ -114,7 +116,6 @@ def accept_release_tag
def prepare_finder_params(args)
params = super(args)
params[:not] = params[:not].to_h if params[:not].present?
params[:iids] ||= [params.delete(:iid)].compact if params[:iid]
params[:attempt_project_search_optimizations] = true if params[:search].present?
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册