Added Proposal model to Legislation

This new Legislation::Proposal model inherits from the original Proposal, as it will behave in a very similar way.
This commit is contained in:
María Checa
2017-09-13 15:43:36 +02:00
parent dc9fe973f4
commit f521a9023b
4 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
class Admin::Legislation::ProposalsController < Admin::Legislation::BaseController
load_and_authorize_resource :process, class: "Legislation::Process"
load_and_authorize_resource :proposal, class: "Legislation::Proposal", through: :process
def index
end
end