ruby on rails - Why does abstract model missing few ActiveRecord callbacks -


so that's abstract model:

class abstracthomeloan < loanproduct   self.abstract_class = true   after_validation :executed_ok   after_save :do_some_shit 

so first method executed normally, second 1 doesn't. why? :)


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -