osem-fcy/app/models/booth_request.rb
2019-03-28 22:13:13 +01:00

10 lines
192 B
Ruby

# frozen_string_literal: true
class BoothRequest < ApplicationRecord
belongs_to :booth
belongs_to :user
validates :role, presence: true
ROLES = %w[submitter responsible].freeze
end