Files
gitlab-foss/lib/gitlab/config/entry/array_of_strings.rb
2019-12-10 15:07:52 +00:00

19 lines
329 B
Ruby

# frozen_string_literal: true
module Gitlab
module Config
module Entry
##
# Entry that represents a array of strings value.
#
class ArrayOfStrings < Node
include Validatable
validations do
validates :config, array_of_strings: true
end
end
end
end
end