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

19 lines
298 B
Ruby

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