Lots of styling; avatars, payment methods, and more.

This commit is contained in:
2013-01-26 02:21:41 -07:00
parent 8ab6fa10ea
commit 1865123201
21 changed files with 147 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
class RegistrationsController < Devise::RegistrationsController
protected
# After signup
def after_sign_up_path_for(resource)
'/users/edit/?flash=welcome_msg'
end
# After edit
def after_update_path_for(resource)
'/users/edit'
end
end