app/controllers/popolo/people_controller.rb in popolo-0.0.2 vs app/controllers/popolo/people_controller.rb in popolo-0.0.3
- old
+ new
@@ -1,12 +1,7 @@
module Popolo
class PeopleController < PopoloController
inherit_resources
respond_to :html, :json
- actions :index, :show
-
- def show
- @person = Person.find_by_slug_or_id(params[:id])
- show!
- end
+ actions :show
end
end