clarion/app/models/proposition.rb

13 lines
391 B
Ruby

class Proposition < ActiveRecord::Base
belongs_to :proposer, class_name: 'User'
belongs_to :proposable, polymorphic: true
enum status: [:undecided, :approved, :rejected, :backup]
delegate :proposable_title, :proposable_type, :proposable_description, to: :proposable
def send_creation_notification
PropositionMailer.new_proposition_notification(self).deliver_later
end
end