mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-25 07:16:49 +00:00
Implement a NullAdapter.
This adapter basically doesn't do anything, and just serializes the attributes into plain old JSON.
This commit is contained in:
8
test/fixtures/poro.rb
vendored
8
test/fixtures/poro.rb
vendored
@@ -2,6 +2,14 @@ class Model
|
||||
def initialize(hash={})
|
||||
@attributes = hash
|
||||
end
|
||||
|
||||
def read_attribute_for_serialization(name)
|
||||
if name == :id || name == 'id'
|
||||
object_id
|
||||
else
|
||||
@attributes[name]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
class Profile < Model
|
||||
|
||||
Reference in New Issue
Block a user