Class: Socializer::PersonContributionsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/socializer/person_contributions_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



5
6
7
8
9
# File 'app/controllers/socializer/person_contributions_controller.rb', line 5

def create
  @person_contribution = current_user.adresses.build(params[:person_contribution])
  @person_contribution.save!
  redirect_to current_user
end

#destroyObject



16
17
18
19
# File 'app/controllers/socializer/person_contributions_controller.rb', line 16

def destroy
  @person_contribution.destroy
  redirect_to current_user
end

#updateObject



11
12
13
14
# File 'app/controllers/socializer/person_contributions_controller.rb', line 11

def update
  @person_contribution.update!(params[:person_contribution])
  redirect_to current_user
end