Hi,
Is it possible to use delegate in your Active Record model and use conditions like :if on it?
class User < ActiveRecord::Base
delegate :company, :to => :master, :if => :has_master?
belongs_to :master, :class_name => "User"
def has_master?
master.present?
end
end
Thnx!