Welcome to mirror list, hosted at ThFree Co, Russian Federation.

application_setting_type.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53202c56f03fe1994cee983e9c146788bb44e2e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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