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:
Diffstat (limited to 'app/graphql/types/merge_request_type.rb')
-rw-r--r--app/graphql/types/merge_request_type.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/app/graphql/types/merge_request_type.rb b/app/graphql/types/merge_request_type.rb
index 3572cfd346b..f4ed9d899a7 100644
--- a/app/graphql/types/merge_request_type.rb
+++ b/app/graphql/types/merge_request_type.rb
@@ -237,17 +237,15 @@ module Types
null: true,
description: 'List of emoji reactions associated with the merge request.'
- field :prepared_at, Types::TimeType, null: true,
- description: 'Timestamp of when the merge request was prepared.'
-
field :codequality_reports_comparer,
type: ::Types::Security::CodequalityReportsComparerType,
null: true,
- alpha: { milestone: '16.4' },
- description: 'Code quality reports comparison reported on the merge request. Returns `null` ' \
- 'if `sast_reports_in_inline_diff` feature flag is disabled.',
+ description: 'Code quality reports comparison reported on the merge request.',
resolver: ::Resolvers::CodequalityReportsComparerResolver
+ field :prepared_at, Types::TimeType, null: true,
+ description: 'Timestamp of when the merge request was prepared.'
+
field :allows_multiple_assignees,
GraphQL::Types::Boolean,
method: :allows_multiple_assignees?,