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

ui_component_size_enum.rb « sast « ci_configuration « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62bd3e9b2cab69bd8c1a59c666957baa33f7d4b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Types
  module CiConfiguration
    module Sast
      class UiComponentSizeEnum < BaseEnum
        graphql_name 'SastUiComponentSize'
        description 'Size of UI component in SAST configuration page'

        value 'SMALL', description: "Size of UI component in SAST configuration page is small."
        value 'MEDIUM', description: "Size of UI component in SAST configuration page is medium."
        value 'LARGE', description: "Size of UI component in SAST configuration page is large."
      end
    end
  end
end