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/lib/custom_wizard/step_updater.rb

38 Zeilen
814 B
Ruby

2017-10-15 05:58:22 +02:00
class CustomWizard::StepUpdater
include ActiveModel::Model
attr_accessor :refresh_required, :fields, :result, :step
def initialize(current_user, wizard, step, fields)
@current_user = current_user
@wizard = wizard
@step = step
@refresh_required = false
2019-12-09 02:43:30 +01:00
@fields = fields.to_h.with_indifferent_access
@result = {}
2017-10-15 05:58:22 +02:00
end
def update
2019-12-09 06:51:42 +01:00
return false if !SiteSetting.custom_wizard_enabled
2017-10-15 05:58:22 +02:00
@step.updater.call(self) if @step.present? && @step.updater.present?
if success?
2020-04-14 01:39:21 +02:00
UserHistory.create(
action: UserHistory.actions[:custom_wizard_step],
acting_user_id: @current_user.id,
context: @wizard.id,
subject: @step.id
)
2017-10-15 05:58:22 +02:00
end
end
def success?
@errors.blank?
end
def refresh_required?
@refresh_required
end
end