I have a Project model and a User model. A project must have a client (User class) and so the Project model has a client_id foreign key.
The User model has a type attribute and will contain 3 if the user is a client.
I want to validate that when a project is assigned to a client, that @user.type is 3.
Project.rb
validates :client_id, presence: true, #@user.type must be 3
belongs_to :client, :class_name => User, :foreign_key => :client_id
User.rb
#constants
TYPES = {
:manager => 1,
:contractor => 2,
:client => 3
}
Not to sure how to go about the validation. I read through the rails guide on validations but still can't seem to get a solution. Any ideas?