osem-fcy/app/models/booth_request.rb
2017-06-18 23:40:30 +03:00

12 lines
261 B
Ruby

class BoothRequest < ActiveRecord::Base
belongs_to :booth
belongs_to :user
validates :booth,
:user,
:role,
presence: true
ROLES = [%w[Submitter submitter], %w[Responsible responsible], %w[Secondary secondary]]
end