mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 02:02:27 +00:00
12 lines
165 B
Ruby
12 lines
165 B
Ruby
class BaseDispatcher
|
|
include Wisper::Publisher
|
|
|
|
def listeners
|
|
[]
|
|
end
|
|
|
|
def load_listeners
|
|
listeners.each { |listener| subscribe(listener) }
|
|
end
|
|
end
|