Skip to content

Instantly share code, notes, and snippets.

@j-manu
Forked from indrekj/gist:2605319
Created May 9, 2012 15:36
Show Gist options
  • Save j-manu/2645620 to your computer and use it in GitHub Desktop.
Save j-manu/2645620 to your computer and use it in GitHub Desktop.
class UserRegistrationService
def initialize(params)
@params = params
end
def register
user = User.new(@params)
if user.save
# send_email
# do other after_create stuff you need
end
user
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment