debian-mirror-gitlab/app/graphql/types/ci_configuration/sast/ui_component_size_enum.rb
2021-04-17 20:07:23 +05:30

17 lines
572 B
Ruby

# 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: "The size of UI component in SAST configuration page is small."
value 'MEDIUM', description: "The size of UI component in SAST configuration page is medium."
value 'LARGE', description: "The size of UI component in SAST configuration page is large."
end
end
end
end