Class: RegistrationsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- RegistrationsController
- Includes:
- Devise::Controllers::InternalHelpers
- Defined in:
- app/controllers/registrations_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /resource/sign_up.
-
#destroy ⇒ Object
DELETE /resource.
-
#edit ⇒ Object
GET /resource/edit.
-
#new ⇒ Object
GET /resource/sign_in.
-
#update ⇒ Object
PUT /resource.
Methods included from Devise::Controllers::InternalHelpers
#devise_controller?, #devise_mapping, included, #resource, #resource_class, #resource_name
Instance Method Details
#create ⇒ Object
POST /resource/sign_up
13 14 15 16 17 18 19 20 21 22 |
# File 'app/controllers/registrations_controller.rb', line 13 def create build_resource if resource.save :notice, :signed_up sign_in_and_redirect(resource_name, resource) else render_with_scope :new end end |
#destroy ⇒ Object
DELETE /resource
40 41 42 43 44 |
# File 'app/controllers/registrations_controller.rb', line 40 def destroy self.resource.destroy :notice, :destroyed sign_out_and_redirect(self.resource) end |
#edit ⇒ Object
GET /resource/edit
25 26 27 |
# File 'app/controllers/registrations_controller.rb', line 25 def edit render_with_scope :edit end |
#new ⇒ Object
GET /resource/sign_in
7 8 9 10 |
# File 'app/controllers/registrations_controller.rb', line 7 def new build_resource render_with_scope :new end |
#update ⇒ Object
PUT /resource
30 31 32 33 34 35 36 37 |
# File 'app/controllers/registrations_controller.rb', line 30 def update if self.resource.update_with_password(params[resource_name]) :notice, :updated redirect_to after_sign_in_path_for(self.resource) else render_with_scope :edit end end |