Class: PlansController

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

Instance Method Summary collapse

Instance Method Details

#editObject



8
9
10
11
# File 'app/controllers/plans_controller.rb', line 8

def edit
  @plans = Plan.all
  @account = 
end

#indexObject



4
5
6
# File 'app/controllers/plans_controller.rb', line 4

def index
  @plans = Plan.all
end

#updateObject



13
14
15
16
17
18
# File 'app/controllers/plans_controller.rb', line 13

def update
  @plans = Plan.all
  @account = 
  @account.save_braintree!(params[:account])
  redirect_to (@account), :notice => t('.update.notice', :default => "Plan changed successfully")
end