summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb
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