Sha256: d12dc573a29bcabd4d9eedf81115f5e551d737e04f3dc65fcf5b91244eb13b43

Contents?: true

Size: 993 Bytes

Versions: 16

Compression:

Stored size: 993 Bytes

Contents

class Clearance::UsersController < ApplicationController
  unloadable

  skip_before_filter :authenticate, :only => [:new, :create]
  before_filter :redirect_to_root,  :only => [:new, :create], :if => :signed_in?
  filter_parameter_logging :password

  def new
    @user = ::User.new(params[:user])
    render :template => 'users/new'
  end

  #Here the email login users are created, FB user creation is managed in the fb controller
  def create
    @user = ::User.new params[:user]
    if @user.save
      flash_notice_after_create
      redirect_to(url_after_create)
    else
      render :template => 'users/new'
    end
  end

  private

  def flash_notice_after_create
    flash[:notice] = translate(:deliver_confirmation,
      :scope   => [:clearance, :controllers, :users],
      :default => "You will receive an email within the next few minutes. " <<
                  "It contains instructions for confirming your account.")
  end

  def url_after_create
    sign_in_url
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
fbdoorman-0.7.6 app/controllers/clearance/users_controller.rb
fbdoorman-0.7.4 app/controllers/clearance/users_controller.rb
fbdoorman-0.7.3 app/controllers/clearance/users_controller.rb
fbdoorman-0.7.2 app/controllers/clearance/users_controller.rb
fbdoorman-0.7.1 app/controllers/clearance/users_controller.rb
fbdoorman-0.7.0 app/controllers/clearance/users_controller.rb
fbdoorman-0.1.0 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.9 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.8 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.7 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.6 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.5 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.4 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.3 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.2 app/controllers/clearance/users_controller.rb
fbdoorman-0.0.1 app/controllers/clearance/users_controller.rb