1
0
Fork 0
discourse-custom-wizard-unl.../lib/custom_wizard/engine.rb
Angus McLeod d453d97df3 Add custom-wizard-specific caching system
Initially for use with registered custom fields
2020-12-04 18:05:56 +11:00

10 Zeilen
Kein EOL
195 B
Ruby

# frozen_string_literal: true
module ::CustomWizard
PLUGIN_NAME ||= 'custom_wizard'
class Engine < ::Rails::Engine
engine_name PLUGIN_NAME
isolate_namespace CustomWizard
end
end