debian-mirror-gitlab/app/graphql/types/ci/application_setting_type.rb
2021-10-27 15:23:28 +05:30

14 lines
345 B
Ruby

# frozen_string_literal: true
module Types
module Ci
class ApplicationSettingType < BaseObject
graphql_name 'CiApplicationSettings'
authorize :read_application_setting
field :keep_latest_artifact, GraphQL::Types::Boolean, null: true,
description: 'Whether to keep the latest jobs artifacts.'
end
end
end