Files
site/app/models/wow_character_play_rp_world.rb

8 lines
276 B
Ruby

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