32 lines
808 B
Ruby
32 lines
808 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Entry
|
|
##
|
|
# Entry that represents a configuration of release:assets:links.
|
|
#
|
|
class Release
|
|
class Assets
|
|
class Link < ::Gitlab::Config::Entry::Node
|
|
include ::Gitlab::Config::Entry::Validatable
|
|
include ::Gitlab::Config::Entry::Attributable
|
|
|
|
ALLOWED_KEYS = %i[name url].freeze
|
|
|
|
attributes ALLOWED_KEYS
|
|
|
|
validations do
|
|
validates :config, allowed_keys: ALLOWED_KEYS
|
|
|
|
validates :name, type: String, presence: true
|
|
validates :url, presence: true, addressable_url: true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|