mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
23 lines
416 B
Ruby
23 lines
416 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Config
|
|
module Entry
|
|
class Validator < SimpleDelegator
|
|
include ActiveModel::Validations
|
|
include Entry::Validators
|
|
|
|
def messages
|
|
errors.full_messages.map do |error|
|
|
"#{location} #{error}".downcase
|
|
end
|
|
end
|
|
|
|
def self.name
|
|
'Validator'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|