ontohub/ontohub

View on GitHub
app/controllers/api/v1/children_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::V1::ChildrenController < Api::V1::Base
  inherit_resources
  belongs_to :ontology

  actions :index

  private
  def default_serializer_options
    {each_serializer: OntologySerializer::Reference}
  end
end