Dear Stack,
Is it possible, using an Observer, to observe the creation of JOIN records? For example, you have a User Model that has_and_belongs_to_many Book Models. Is it possible to monitor books_users records as they are created or deleted or must I have a BookUser model to do this?
Example of what I want to observe:
User.books << book
OR
User.books.push(book)
OR whatever!
Thanks,
Dave K.