Sha256: 3439b815fdfdba36fb34e0f95f55f28d77d4da9e887b6589e84a21fa4fe93a4c

Contents?: true

Size: 1.45 KB

Versions: 8

Compression:

Stored size: 1.45 KB

Contents

class Admin::AccountController < Admin::BaseController

  layout 'admin/session'

  skip_before_filter :reload_config_and_roles
  skip_before_filter :authenticate
  skip_before_filter :set_locale

  before_filter :sign_in?, :except => [:forgot_password, :send_password, :show]
  before_filter :new?, :only => [:forgot_password, :send_password]

  def new
    flash[:notice] = Typus::I18n.t("Enter your email below to create the first user.")
  end

  def create
    user = Typus.user_class.generate(:email => params[:typus_user][:email])
    redirect_to user ? { :action => "show", :id => user.token } : { :action => :new }
  end

  def forgot_password; end

  def send_password
    if user = Typus.user_class.find_by_email(params[:typus_user][:email])
      Admin::Mailer.reset_password_instructions(user).deliver
      redirect_to new_admin_session_path, :notice => Typus::I18n.t("Password recovery link sent to your email.")
    else
      render :action => :forgot_password
    end
  end

  def show
    flash[:notice] = Typus::I18n.t("Please set a new password.")
    typus_user = Typus.user_class.find_by_token!(params[:id])
    session[:typus_user_id] = typus_user.id
    redirect_to params[:return_to] || { :controller => "/admin/#{Typus.user_class.to_resource}", :action => "edit", :id => typus_user.id }
  end

  private

  def sign_in?
    redirect_to new_admin_session_path unless zero_users
  end

  def new?
    redirect_to new_admin_account_path if zero_users
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
typus-3.1.7 app/controllers/admin/account_controller.rb
typus-3.1.6 app/controllers/admin/account_controller.rb
typus-3.1.5 app/controllers/admin/account_controller.rb
typus-3.1.4 app/controllers/admin/account_controller.rb
typus-3.1.3 app/controllers/admin/account_controller.rb
typus-3.1.2 app/controllers/admin/account_controller.rb
typus-3.1.1 app/controllers/admin/account_controller.rb
typus-3.1.0 app/controllers/admin/account_controller.rb