mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 22:36:50 +00:00
12 lines
180 B
Ruby
12 lines
180 B
Ruby
module ActiveModel
|
|
class Serializer
|
|
class Adapter
|
|
class Null < Adapter
|
|
def serializable_hash(options = {})
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|