osem-fcy/app/models/booth_request.rb

11 lines
204 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