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: 3a208f9d3e49b1d9c62e8fb1dfdf133bde41e55e (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'
        value 'MEDIUM'
        value 'LARGE'
      end
    end
  end
end