Sha256: 3dbb1ab82aa03e4a87e129b15973e390058e73b446061b2c7eae6259291f3bb2

Contents?: true

Size: 1.16 KB

Versions: 3

Compression:

Stored size: 1.16 KB

Contents

class AccountsController < ApplicationController
  before_filter :authenticate, :only => [:index, :edit, :update]
  before_filter :authorize_admin, :except => [:new, :create, :index]
  layout Saucy::Layouts.to_proc

  def new
    @plan = Plan.find(params[:plan_id])
    @signup = Signup.new
  end

  def create
    @plan = Plan.find(params[:plan_id])
    @signup = Signup.new(params[:signup])
    @signup.user = current_user
    @signup.plan = @plan
    if @signup.save
      flash[:success] = "Account was created."
      sign_in @signup.user
      redirect_to root_url
    else
      render :action => 'new'
    end
  end

  def index
    if current_user.projects.size == 1
      flash.keep
      redirect_to project_path(current_user.projects.first)
    else
      @accounts = current_user.accounts
    end
  end

  def edit
    @account = current_account
  end

  def update
    @account = current_account
    if @account.update_attributes(params[:account])
      flash[:success] = 'Account was updated.'
      redirect_to edit_profile_url
    else
      render :action => :edit
    end
  end

  private

  def current_account
    Account.find_by_keyword!(params[:id])
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
saucy-0.2.2 app/controllers/accounts_controller.rb
saucy-0.2.1 app/controllers/accounts_controller.rb
saucy-0.2.0 app/controllers/accounts_controller.rb