diff options
author | Ganesh Kumar <ganesh.dc@gmail.com> | 2011-05-21 13:55:52 +0530 |
---|---|---|
committer | Ganesh Kumar <ganesh.dc@gmail.com> | 2011-05-21 13:55:52 +0530 |
commit | 3d789ea4b9aed42680de3b3bb359a19cd4a48f57 (patch) | |
tree | fb2c65550fa857e5becafb1cb2dbebca651959a6 | |
parent | b134e0f44555a7cb45324e4eee76efeea46d7e6d (diff) | |
download | rails-3d789ea4b9aed42680de3b3bb359a19cd4a48f57.tar.gz rails-3d789ea4b9aed42680de3b3bb359a19cd4a48f57.tar.bz2 rails-3d789ea4b9aed42680de3b3bb359a19cd4a48f57.zip |
ActionMailer deliver method Documentation corrected Ticket #761
-rw-r--r-- | activemodel/lib/active_model/observing.rb | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/observer.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/observing.rb b/activemodel/lib/active_model/observing.rb index b94ad4bb9b..d48f2e8a1f 100644 --- a/activemodel/lib/active_model/observing.rb +++ b/activemodel/lib/active_model/observing.rb @@ -125,7 +125,7 @@ module ActiveModel # # class CommentObserver < ActiveModel::Observer # def after_save(comment) - # Notifications.deliver_comment("admin@do.com", "New comment was posted", comment) + # Notifications.comment("admin@do.com", "New comment was posted", comment).deliver # end # end # diff --git a/activerecord/lib/active_record/observer.rb b/activerecord/lib/active_record/observer.rb index c723436330..5a5351b517 100644 --- a/activerecord/lib/active_record/observer.rb +++ b/activerecord/lib/active_record/observer.rb @@ -11,7 +11,7 @@ module ActiveRecord # # class CommentObserver < ActiveRecord::Observer # def after_save(comment) - # Notifications.deliver_comment("admin@do.com", "New comment was posted", comment) + # Notifications.comment("admin@do.com", "New comment was posted", comment).deliver # end # end # |