0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/controllers/steps.rb

23 Zeilen
704 B
Ruby

class CustomWizard::StepsController < ApplicationController
before_action :ensure_logged_in
2017-09-25 16:47:40 +02:00
def update
2017-10-07 04:27:38 +02:00
wizard = CustomWizard::Builder.new(current_user, params[:wizard_id].underscore).build
updater = wizard.create_updater(params[:step_id], params[:fields])
2017-09-25 16:47:40 +02:00
updater.update
if updater.success?
2017-10-05 02:36:46 +02:00
result = success_json
result.merge!(updater.result) if updater.result
2017-09-25 16:47:40 +02:00
result[:refresh_required] = true if updater.refresh_required?
render json: result
else
errors = []
updater.errors.messages.each do |field, msg|
errors << { field: field, description: msg.join }
end
render json: { errors: errors }, status: 422
end
end
end