0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-18 23:01:11 +02:00
Dieser Commit ist enthalten in:
jumagura 2023-10-02 22:46:31 -04:00
Ursprung 6294f6f9c0
Commit 4ce82b0d17

Datei anzeigen

@ -240,12 +240,10 @@ after_initialize do
on(:before_create_topic) do |topic_params, user|
category = topic_params.category
wizard_submission_id = topic_params.custom_fields['wizard_submission_id']
if category&.custom_fields&.[]('create_topic_wizard').present? && wizard_submission_id.blank?
raise Discourse::InvalidParameters.new(
I18n.t('wizard.error_messages.wizard_replacing_composer')
)
end
end
end