2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-26 01:14:56 +08:00
|
|
|
class StepsController < ApplicationController
|
2018-02-01 12:17:59 +08:00
|
|
|
requires_login
|
2016-08-26 01:14:56 +08:00
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
before_action :ensure_wizard_enabled
|
|
|
|
before_action :ensure_admin
|
2016-08-26 01:14:56 +08:00
|
|
|
|
|
|
|
def update
|
2016-09-10 04:51:07 +08:00
|
|
|
wizard = Wizard::Builder.new(current_user).build
|
2016-09-13 02:43:00 +08:00
|
|
|
updater = wizard.create_updater(params[:id], params[:fields])
|
|
|
|
updater.update
|
2016-09-01 01:35:49 +08:00
|
|
|
|
|
|
|
if updater.success?
|
2016-09-08 06:04:01 +08:00
|
|
|
result = { success: "OK" }
|
|
|
|
result[:refresh_required] = true if updater.refresh_required?
|
|
|
|
render json: result
|
2016-09-01 01:35:49 +08:00
|
|
|
else
|
|
|
|
errors = []
|
|
|
|
updater.errors.messages.each do |field, msg|
|
|
|
|
errors << { field: field, description: msg.join }
|
|
|
|
end
|
|
|
|
render json: { errors: errors }, status: 422
|
|
|
|
end
|
2016-08-26 01:14:56 +08:00
|
|
|
end
|
|
|
|
end
|