Files
nairobi/app/controllers/legislations_controller.rb
2015-12-16 11:45:46 +01:00

8 lines
154 B
Ruby

class LegislationsController < ApplicationController
load_and_authorize_resource
def show
@legislation = Legislation.find(params[:id])
end
end