mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-22 22:06:50 +00:00
10 lines
139 B
Ruby
10 lines
139 B
Ruby
module ActiveModelSerializers
|
|
module Adapter
|
|
class Null < Base
|
|
def serializable_hash(*)
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|