adds legislations

This commit is contained in:
rgarcia
2015-12-15 13:08:03 +01:00
parent dea9110a69
commit 996e87cb13
7 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
class LegislationsController < ApplicationController
load_and_authorize_resource
def show
@legislation = Legislation.find(params[:id])
end
end