Veréis tengo el siguiente modelo:
class Offer < ActiveRecord::Base
belongs_to :club
belongs_to :buyer, :class_name => ‘Club’
belongs_to :player
named_scope :pending, :order => ‘state ASC’, :conditions => {:state =>
PENDING}
named_scope :accepted, :order => ‘state ASC’, :conditions => {:state
=> ACCEPTED}
named_scope :rejected, :order => ‘state ASC’, :conditions => {:state
=> REJECTED}
end
Me resulta muy fácil saber cuáles son las ofertas recibidas por un club
haciendo esto:
club.offers.pending
Sin embargo también me gustarÃa poder hacer lo mismo pero cogiendo como
filtro el ser comprador (es decir con el atributo buyer)
¿Cómo puedo hacer esto?