vol1ura/Sat_9am_5km

View on GitHub
app/models/volunteering_position.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

class VolunteeringPosition < ApplicationRecord
  belongs_to :event

  validates :rank, numericality: { greater_than_or_equal_to: 1, only_integer: true }
  validates :number, numericality: { greater_than_or_equal_to: 1, only_integer: true }
  validates :role, uniqueness: { scope: :event_id }

  enum :role, Volunteer.roles, instance_methods: false, validate: true
end