0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-14 22:02:53 +01:00
discourse-custom-wizard/lib/custom_wizard/engine.rb

11 Zeilen
194 B
Ruby

# frozen_string_literal: true
module ::CustomWizard
2024-10-16 13:52:03 +02:00
PLUGIN_NAME ||= "custom_wizard"
2021-03-11 07:30:15 +01:00
class Engine < ::Rails::Engine
engine_name PLUGIN_NAME
isolate_namespace CustomWizard
end
2021-03-11 07:30:15 +01:00
end