mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
33 lines
718 B
Ruby
33 lines
718 B
Ruby
require 'active_model/serializer/error_serializer'
|
|
|
|
module ActiveModel
|
|
class Serializer
|
|
class ErrorsSerializer
|
|
include Enumerable
|
|
delegate :each, to: :@serializers
|
|
attr_reader :object, :root
|
|
|
|
def initialize(resources, options = {})
|
|
@root = options[:root]
|
|
@object = resources
|
|
@serializers = resources.map do |resource|
|
|
serializer_class = options.fetch(:serializer) { ActiveModel::Serializer::ErrorSerializer }
|
|
serializer_class.new(resource, options.except(:serializer))
|
|
end
|
|
end
|
|
|
|
def success?
|
|
false
|
|
end
|
|
|
|
def json_key
|
|
nil
|
|
end
|
|
|
|
protected
|
|
|
|
attr_reader :serializers
|
|
end
|
|
end
|
|
end
|