Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
7 Zeilen
208 B
Ruby
7 Zeilen
208 B
Ruby
|
module CustomWizardStepExtension
|
||
|
attr_accessor :title, :description, :key, :permitted, :permitted_message
|
||
|
end
|
||
|
|
||
|
class Wizard::Step
|
||
|
prepend CustomWizardStepExtension if SiteSetting.custom_wizard_enabled
|
||
|
end
|