Class: Users::RegistrationsController

Inherits:
Devise::RegistrationsController
  • Object
show all
Defined in:
app/controllers/users/registrations_controller.rb

Instance Method Summary collapse

Instance Method Details

#destroyObject

DELETE /resource



28
29
30
31
# File 'app/controllers/users/registrations_controller.rb', line 28

def destroy
  current_user.questionnaire.destroy if current_user.questionnaire.present?
  super
end

#editObject

GET /resource/edit



18
19
20
# File 'app/controllers/users/registrations_controller.rb', line 18

def edit
  super
end

#updateObject

PUT /resource



23
24
25
# File 'app/controllers/users/registrations_controller.rb', line 23

def update
  super
end