mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 16:41:17 +08:00
DEV: Convert some files to autoloading and various improvements (#26860)
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module DiscourseAutomation
|
||||
module PluginInstanceExtension
|
||||
def add_automation_scriptable(name, &block)
|
||||
reloadable_patch { DiscourseAutomation::Scriptable.add(name, &block) }
|
||||
end
|
||||
|
||||
def add_automation_triggerable(name, &block)
|
||||
reloadable_patch { DiscourseAutomation::Triggerable.add(name, &block) }
|
||||
end
|
||||
|
||||
def add_triggerable_to_scriptable(triggerable, scriptable)
|
||||
reloadable_patch do
|
||||
DiscourseAutomation::Scriptable.add_plugin_triggerable(triggerable, scriptable)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user