Class: Socializer::PersonContributionsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Socializer::PersonContributionsController
- Defined in:
- app/controllers/socializer/person_contributions_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
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 |
#destroy ⇒ Object
16 17 18 19 |
# File 'app/controllers/socializer/person_contributions_controller.rb', line 16 def destroy @person_contribution.destroy redirect_to current_user end |
#update ⇒ Object
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 |