mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 14:29:31 +00:00
- The removed classes and modules were added back with deprecation warning and deprecation test were added for them. - One test was renamed because it contained `__`. - Some tests were refactored. - The ActiveModelSerializers::Deserialization module is now called Adapter instead of ActiveModelSerializers::Adapter. - The changelog was added for #1535
14 lines
269 B
Ruby
14 lines
269 B
Ruby
module ActiveModelSerializers
|
|
module Deserialization
|
|
module_function
|
|
|
|
def jsonapi_parse(*args)
|
|
Adapter::JsonApi::Deserialization.parse(*args)
|
|
end
|
|
|
|
def jsonapi_parse!(*args)
|
|
Adapter::JsonApi::Deserialization.parse!(*args)
|
|
end
|
|
end
|
|
end
|