unepwcmc/SAPI

View on GitHub
app/controllers/admin/children_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Admin::ChildrenController < Admin::SimpleCrudController
  belongs_to :taxon_concept
  before_action :load_search
  layout 'taxon_concepts'

  def index
    @children = @taxon_concept.children.
      order(:full_name)
  end
end