Renames the model and related stuff from Legislation to LegacyLegislation to avoid name clashes with the future Legislation module.
9 lines
174 B
Ruby
9 lines
174 B
Ruby
class LegacyLegislationsController < ApplicationController
|
|
load_and_authorize_resource
|
|
|
|
def show
|
|
@legacy_legislation = LegacyLegislation.find(params[:id])
|
|
end
|
|
|
|
end
|