clarion/app/models/participation.rb

9 lines
324 B
Ruby
Raw Permalink Normal View History

class Participation < ActiveRecord::Base
belongs_to :participant, class_name: User
2016-10-15 05:59:07 +03:00
has_one :participant_with_personal_profile, class_name: Participant
belongs_to :event
validates :participant_id, presence: true
scope :approved, ->() { where approved: true }
scope :pending, ->() { where.not approved: true }
end