Skip to content

Instantly share code, notes, and snippets.

@laser
Created April 14, 2014 17:24
Show Gist options
  • Save laser/10667267 to your computer and use it in GitHub Desktop.
Save laser/10667267 to your computer and use it in GitHub Desktop.
00: UserModel
class User < ActiveRecord::Base
after_create :notify_added
validates :email, uniqueness: true
def notify_added
UserMailer.email(self).deliver
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment