Sha256: 91832cddb233043dfb56002069662a2ddd95b966ed6f3cbfe8f63a4957fd9e3f

Contents?: true

Size: 1.27 KB

Versions: 8

Compression:

Stored size: 1.27 KB

Contents

class RegistrationsController < ApplicationController
  include Devise::Controllers::InternalHelpers

  before_filter :require_no_authentication, :only => [ :new, :create ]
  before_filter :authenticate_scope!, :only => [:edit, :update, :destroy]

  # GET /resource/sign_in
  def new
    build_resource
    render_with_scope :new
  end

  # POST /resource/sign_up
  def create
    build_resource

    if resource.save
      flash[:"#{resource_name}_signed_up"] = true
      set_flash_message :notice, :signed_up
      sign_in_and_redirect(resource_name, resource)
    else
      render_with_scope :new
    end
  end

  # GET /resource/edit
  def edit
    render_with_scope :edit
  end

  # PUT /resource
  def update
    if self.resource.update_with_password(params[resource_name])
      set_flash_message :notice, :updated
      redirect_to after_sign_in_path_for(self.resource)
    else
      render_with_scope :edit
    end
  end

  # DELETE /resource
  def destroy
    self.resource.destroy
    set_flash_message :notice, :destroyed
    sign_out_and_redirect(self.resource)
  end

  protected

    # Authenticates the current scope and dup the resource
    def authenticate_scope!
      send(:"authenticate_#{resource_name}!")
      self.resource = send(:"current_#{resource_name}").dup
    end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
mongoid-devise-1.0.1 app/controllers/registrations_controller.rb
devise-1.0.4 app/controllers/registrations_controller.rb
devise-1.0.3 app/controllers/registrations_controller.rb
glennr-devise-1.0.1.1 app/controllers/registrations_controller.rb
glennr-devise-1.0.1 app/controllers/registrations_controller.rb
devise-1.0.2 app/controllers/registrations_controller.rb
devise-1.0.1 app/controllers/registrations_controller.rb
devise-1.0.0 app/controllers/registrations_controller.rb