Class: Hello::Registration::SignUpController

Inherits:
ApplicationController show all
Includes:
Concerns::Registration::SignUp
Defined in:
app/controllers/hello/registration/sign_up_controller.rb

Overview

you really should be overriding concerns instead of this file

Instance Method Summary collapse

Methods included from Concerns::Registration::SignUp

#on_failure, #on_success

Instance Method Details

#createObject

POST /hello/sign_up



24
25
26
27
28
29
30
# File 'app/controllers/hello/registration/sign_up_controller.rb', line 24

def create
  if 
    _create_disabled
  else
    _create_enabled
  end
end

#disabledObject

GET /hello/sign_up/disabled



33
34
35
# File 'app/controllers/hello/registration/sign_up_controller.rb', line 33

def disabled
  
end

#indexObject

GET /hello/sign_up



14
15
16
# File 'app/controllers/hello/registration/sign_up_controller.rb', line 14

def index
  
end

#widgetObject

GET /hello/sign_up/widget



19
20
21
# File 'app/controllers/hello/registration/sign_up_controller.rb', line 19

def widget
  render 'hello/registration/sign_up_widget', layout: false
end