projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
some more rails stuff
[rails.git]
/
app
/
controllers
/
user_controller.rb
1
class UserController < ApplicationController
2
3
def create
4
# do some checks, find the user then send the mail
5
Notifier::deliver_confirm_signup(user)
6
end
7
8
def new
9
10
end
11
end