mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 14:29:31 +00:00
16 lines
297 B
Ruby
16 lines
297 B
Ruby
module ActiveModelSerializers
|
|
module Deserialization
|
|
module_function
|
|
|
|
def jsonapi_parse(*args)
|
|
Adapter::JsonApi::Deserialization.parse(*args)
|
|
end
|
|
|
|
# :nocov:
|
|
def jsonapi_parse!(*args)
|
|
Adapter::JsonApi::Deserialization.parse!(*args)
|
|
end
|
|
# :nocov:
|
|
end
|
|
end
|