Class: AccountsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/accounts_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'app/controllers/accounts_controller.rb', line 12

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."
     @signup.user
    redirect_to root_url
  else
    render :action => 'new'
  end
end

#editObject



35
36
37
# File 'app/controllers/accounts_controller.rb', line 35

def edit
  @account = 
end

#indexObject



26
27
28
29
30
31
32
33
# File 'app/controllers/accounts_controller.rb', line 26

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

#newObject



7
8
9
10
# File 'app/controllers/accounts_controller.rb', line 7

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

#updateObject



39
40
41
42
43
44
45
46
47
# File 'app/controllers/accounts_controller.rb', line 39

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