gitlab-org--gitlab-foss/app/graphql/types/deployment_details_type.rb

10 lines
217 B
Ruby

# frozen_string_literal: true
module Types
class DeploymentDetailsType < DeploymentType
graphql_name 'DeploymentDetails'
description 'The details of the deployment'
authorize :read_deployment
end
end