Class: Socializer::PersonProfilesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Socializer::PersonProfilesController
- Defined in:
- app/controllers/socializer/person_profiles_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
5 6 7 8 9 |
# File 'app/controllers/socializer/person_profiles_controller.rb', line 5 def create @person_profile = current_user.adresses.build(params[:person_profile]) @person_profile.save! redirect_to current_user end |
#destroy ⇒ Object
16 17 18 19 |
# File 'app/controllers/socializer/person_profiles_controller.rb', line 16 def destroy @person_profile.destroy redirect_to current_user end |
#update ⇒ Object
11 12 13 14 |
# File 'app/controllers/socializer/person_profiles_controller.rb', line 11 def update @person_profile.update!(params[:person_profile]) redirect_to current_user end |