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