¿Hay alguna manera de que pueda obtener una lista de los modelos a los que pertenece un modelo en particular en Rails?Accediendo a asociaciones en Rails
Por ejemplo:
class Project < ActiveRecord::Base
has_one :status
...
end
class Task < ActiveRecord::Base
has_one :status
...
end
class Status < ActiveRecord::Base
belongs_to :project
belongs_to :task
# this is where I want to be able to pass in an array of the associations' class
# names (to be used for checking input) rather than having to do w%{ project task }
# which leaves it open to failure if I add new associations in future
validates_inclusion_of :status_of, :in => ?
...
end
Espero que esto tenga algún tipo de sentido!
¡Exactamente lo que estaba buscando! Muchas gracias. –
Awesome answer. Spot on. – Tilendor