Class: Spree::UserRegistrationsController

Inherits:
Devise::RegistrationsController
  • Object
show all
Includes:
Core::ControllerHelpers::Auth, Core::ControllerHelpers::Common, Core::ControllerHelpers::Currency, Core::ControllerHelpers::Locale, Core::ControllerHelpers::Order, Core::ControllerHelpers::Store, LocaleUrls, SpreeI18n::ControllerLocaleHelper
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.



75
76
77
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 75

def cancel
  super
end

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

POST /resource/sign_up

Yields:

  • (resource)


31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 31

def create
  @user = build_resource(spree_user_params)
  resource.skip_confirmation_notification! if Spree::Auth::Config[:confirmable]
  resource_saved = resource.save
  yield resource if block_given?
  if resource_saved
    if resource.active_for_authentication?
      set_flash_message :notice, :signed_up
      (resource_name, resource)
      session[:spree_user_signup] = true
      resource.send_confirmation_instructions(current_store) if Spree::Auth::Config[:confirmable]
      (resource)
    else
      set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}"
      expire_data_after_sign_in!
      resource.send_confirmation_instructions(current_store) if Spree::Auth::Config[:confirmable]
      respond_with resource, location: (resource)
    end
  else
    clean_up_passwords(resource)
    render :new, status: :unprocessable_entity
  end
end

#destroyObject

DELETE /resource



66
67
68
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 66

def destroy
  super
end

#editObject

GET /resource/edit



56
57
58
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 56

def edit
  super
end

#newObject

GET /resource/sign_up



25
26
27
28
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 25

def new
  super
  @user = resource
end

#updateObject

PUT /resource



61
62
63
# File 'lib/controllers/frontend/spree/user_registrations_controller.rb', line 61

def update
  super
end