mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
18 lines
328 B
Ruby
18 lines
328 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|