Created
July 6, 2011 08:11
-
-
Save kiote/1066808 to your computer and use it in GitHub Desktop.
Observer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Project < ActiveRecord::Base | |
after_create :send_create_notifications | |
private | |
def send_create_notifications | |
self.members.each do |member| | |
ProjectMailer.deliver_notification(self, member) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment