Files
site/app/models/wow_character_play_rp_world.rb

10 lines
307 B
Ruby

# frozen_string_literal: true
class WowCharacterPlayRpWorld < ApplicationRecord
belongs_to :wow_character
belongs_to :rp_world
validates :status, presence: true, format: { with: /(INVITED|PENDING|PLAYING|BANNED)/ }
validates :role, presence: true, format: { with: /(PLAYER|MODERATOR|ADMIN)/ }
end