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/query_type.rb')
-rw-r--r--app/graphql/types/query_type.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/graphql/types/query_type.rb b/app/graphql/types/query_type.rb
index b26e447f622..38b8973034d 100644
--- a/app/graphql/types/query_type.rb
+++ b/app/graphql/types/query_type.rb
@@ -171,6 +171,18 @@ module Types
description: 'Definitions for all audit events available on the instance.',
resolver: Resolvers::AuditEvents::AuditEventDefinitionsResolver
+ field :abuse_report, ::Types::AbuseReportType,
+ null: true,
+ alpha: { milestone: '16.3' },
+ description: 'Find an abuse report.',
+ resolver: Resolvers::AbuseReportResolver
+
+ field :abuse_report_labels, ::Types::LabelType.connection_type,
+ null: true,
+ alpha: { milestone: '16.3' },
+ description: 'Abuse report labels.',
+ resolver: Resolvers::AbuseReportLabelsResolver
+
def design_management
DesignManagementObject.new(nil)
end