Repository URL to install this package:
|
Version:
0.1.0 ▾
|
# frozen_string_literal: true
module Kiwi
module JSONAPI
# JSONAPI action
module Action
def render(resources, options = {})
renderer = ::JSONAPI::Serializable::Renderer.new
renderer.render(resources,
options)
end
end
end
end