2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Resolvers
|
|
|
|
module Projects
|
|
|
|
class ServicesResolver < BaseResolver
|
|
|
|
include Gitlab::Graphql::Authorize::AuthorizeResource
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
type Types::Projects::ServiceType.connection_type, null: true
|
2021-02-22 17:27:13 +05:30
|
|
|
authorize :admin_project
|
2021-04-29 21:17:54 +05:30
|
|
|
authorizes_object!
|
2021-01-29 00:20:46 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
argument :active,
|
|
|
|
GraphQL::BOOLEAN_TYPE,
|
|
|
|
required: false,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'Indicates if the service is active.'
|
2020-04-22 19:07:51 +05:30
|
|
|
argument :type,
|
|
|
|
Types::Projects::ServiceTypeEnum,
|
|
|
|
required: false,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'Class name of the service.'
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
alias_method :project, :object
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def resolve(active: nil, type: nil)
|
2021-06-08 01:23:25 +05:30
|
|
|
servs = project.integrations
|
2020-04-22 19:07:51 +05:30
|
|
|
servs = servs.by_active_flag(active) unless active.nil?
|
|
|
|
servs = servs.by_type(type) unless type.blank?
|
|
|
|
servs
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|