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:
8
app/models/legislation/proposal.rb
Normal file
8
app/models/legislation/proposal.rb
Normal file
@@ -0,0 +1,8 @@
|
||||
class Legislation::Proposal < Proposal
|
||||
acts_as_paranoid column: :hidden_at
|
||||
include ActsAsParanoidAliases
|
||||
|
||||
belongs_to :process, class_name: 'Legislation::Process', foreign_key: 'legislation_process_id'
|
||||
|
||||
scope :sorted, -> { order('id ASC') }
|
||||
end
|
||||
Reference in New Issue
Block a user