holderdeord/hdo-site

View on GitHub
app/controllers/api/committees_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  class CommitteesController < ApiController
    def index
      respond_with Committee.order(:name)
    end

    def show
      respond_with Committee.find(params[:id])
    end
  end
end