20 lines
389 B
Ruby
20 lines
389 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Entry
|
|
##
|
|
# Entry that represents a key prefix.
|
|
#
|
|
class Prefix < ::Gitlab::Config::Entry::Node
|
|
include ::Gitlab::Config::Entry::Validatable
|
|
|
|
validations do
|
|
validates :config, key: true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|