diff --git a/app/controllers/my_profile/enterprise_validation_controller.rb b/app/controllers/my_profile/enterprise_validation_controller.rb index c30698a..221c224 100644 --- a/app/controllers/my_profile/enterprise_validation_controller.rb +++ b/app/controllers/my_profile/enterprise_validation_controller.rb @@ -49,4 +49,13 @@ class EnterpriseValidationController < MyProfileController end end + def edit_validation_info + @info = profile.validation_info + if request.post? + if @info.update_attributes(params[:info]) + redirect_to :action => 'index' + end + end + end + end -- libgit2 0.21.2