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
Post a Comment