In my rails app, have a tree-like model like this:
class File
belongs_to :parent, :foreign_key => "parent_id", :class_name => "File"
end
I want to add functionality to the behavior of the parent setter. So something like this (except it doesn't work)?
def parent=(new_parent)
super(new_parent)
# Additional stuff I want to do here
end
I need the default behavior to still exist since I think it manages the relations but I need to know when parent is changed so I can do some additional tasks.