Rails 2.3.8. I have 3 models, User, Source, and Subscription.
User attr_accessible :source_ids
has_many :subscriptions
has_many :sources, :through => :subscriptions
Source has_many :subscriptions
Subscription belongs_to :user
belongs_to :source
I have an interface that allows a User to edit their Subscriptions to a Source. It collects source_ids, and creates or deletes a Subscription based on the collection. The problem I am having is, quote:
"Automatic deletion of join models is direct, no destroy callbacks are triggered."
The Subscriptions are being deleted, not destroyed. I have a callback in the Subscription model that is not triggered:
before_destroy do |subscription|
[Some irrelevant object not to be mentioned].destroy
end
My question is, how can I trigger this callback when a Subscription is automatically deleted due to the join model?
your_custom_method
be defined in the same file thatafter_remove
is used? Not in the "User model" like you describe? – Remake