Class: Spree::UserRegistrationsController

Inherits:
Devise::RegistrationsController
  • Object
show all
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

Instance Method Details

#cancelObject

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.



63
64
65
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 63

def cancel
  super
end

#create {|resource| ... } ⇒ Object

POST /resource/sign_up

Yields:

  • (resource)


19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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?
      set_flash_message :notice, :signed_up
      if current_order
        current_order.associate_user! @user
      end
      (resource_name, resource)
      session[:spree_user_signup] = true
      respond_with resource, location: (resource)
    else
      set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}"
      expire_data_after_sign_in!
      respond_with resource, location: (resource)
    end
  else
    clean_up_passwords(resource)
    render :new
  end
end

#destroyObject

DELETE /resource



54
55
56
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 54

def destroy
  super
end

#editObject

GET /resource/edit



44
45
46
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 44

def edit
  super
end

#newObject

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

#updateObject

PUT /resource



49
50
51
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 49

def update
  super
end