module ActionController::Serialization

def _render_option_json(resource, options)

def _render_option_json(resource, options)
  json = ActiveModel::Serializer.build_json(self, resource, options)
  if json
    super(json, options)
  else
    super
  end
end