popolo-project/popolo-engine

View on GitHub
app/controllers/popolo/organizations_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Popolo
  class OrganizationsController < PopoloController
    inherit_resources
    respond_to :html, :json
    actions :index, :show

    def index
      @organizations = Organization.roots
      index!
    end
  end
end