2014-10-07 21:46:09 +00:00
|
|
|
class Users::RegistrationsController < Devise::RegistrationsController
|
2014-03-03 18:28:16 +00:00
|
|
|
protected
|
2014-10-07 21:46:09 +00:00
|
|
|
def after_sign_up_path_for(resource)
|
|
|
|
signed_in_root_path(resource)
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_update_path_for(resource)
|
|
|
|
signed_in_root_path(resource)
|
|
|
|
end
|
|
|
|
end
|