Class: Spree::UserRegistrationsController
- Inherits:
-
Devise::RegistrationsController
- Object
- Devise::RegistrationsController
- Spree::UserRegistrationsController
- Includes:
- Core::ControllerHelpers::Auth, Core::ControllerHelpers::Common, Core::ControllerHelpers::Order, Core::ControllerHelpers::Store
- Defined in:
- lib/controllers/frontend/spree/user_registrations_controller.rb
Instance Method Summary collapse
-
#cancel ⇒ Object
GET /resource/cancel Forces the session data which is usually expired after sign in to be expired now.
-
#create {|resource| ... } ⇒ Object
POST /resource/sign_up.
-
#destroy ⇒ Object
DELETE /resource.
-
#edit ⇒ Object
GET /resource/edit.
-
#new ⇒ Object
GET /resource/sign_up.
-
#update ⇒ Object
PUT /resource.
Instance Method Details
#cancel ⇒ Object
GET /resource/cancel Forces the session data which is usually expired after sign in to be expired now. This is useful if the user wants to cancel oauth signing in/up in the middle of the process, removing all OAuth session data.
60 61 62 |
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 60 def cancel super end |
#create {|resource| ... } ⇒ Object
POST /resource/sign_up
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 19 def create @user = build_resource(spree_user_params) resource_saved = resource.save yield resource if block_given? if resource_saved if resource.active_for_authentication? :notice, :signed_up sign_up(resource_name, resource) session[:spree_user_signup] = true respond_with resource, location: after_sign_up_path_for(resource) else :notice, :"signed_up_but_#{resource.}" expire_data_after_sign_in! respond_with resource, location: after_inactive_sign_up_path_for(resource) end else clean_up_passwords(resource) render :new end end |
#destroy ⇒ Object
DELETE /resource
51 52 53 |
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 51 def destroy super end |
#edit ⇒ Object
GET /resource/edit
41 42 43 |
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 41 def edit super end |
#new ⇒ Object
GET /resource/sign_up
13 14 15 16 |
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 13 def new super @user = resource end |
#update ⇒ Object
PUT /resource
46 47 48 |
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 46 def update super end |