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
14 15 16 17 18 19 20 21 22 23 24 |
# File 'app/controllers/registrations_controller.rb', line 14 def create build_resource if resource.save flash[:"#{resource_name}_signed_up"] = true :notice, :signed_up sign_in_and_redirect(resource_name, resource) else render_with_scope :new end end |
#destroy ⇒ Object
DELETE /resource
42 43 44 45 46 |
# File 'app/controllers/registrations_controller.rb', line 42 def destroy self.resource.destroy :notice, :destroyed sign_out_and_redirect(self.resource) end |
#edit ⇒ Object
GET /resource/edit
27 28 29 |
# File 'app/controllers/registrations_controller.rb', line 27 def edit render_with_scope :edit end |
#new ⇒ Object
GET /resource/sign_in
8 9 10 11 |
# File 'app/controllers/registrations_controller.rb', line 8 def new build_resource render_with_scope :new end |
#update ⇒ Object
PUT /resource
32 33 34 35 36 37 38 39 |
# File 'app/controllers/registrations_controller.rb', line 32 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 |