gitlab-org--gitlab-foss/lib/gitlab/ci/config/entry/key.rb

19 lines
298 B
Ruby
Raw Normal View History

module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents a key.
#
class Key < Node
include Validatable
validations do
validates :config, key: true
end
end
end
end
end
end