78adcf822d
* #251 - Disable subscription in community edition * Hide billing routes in sidebar for community edition * Remove subscription serializer if billing disabled
12 lines
365 B
Ruby
12 lines
365 B
Ruby
class AsyncDispatcher < BaseDispatcher
|
|
def dispatch(event_name, timestamp, data)
|
|
event_object = Events::Base.new(event_name, timestamp, data)
|
|
publish(event_object.method_name, event_object)
|
|
end
|
|
|
|
def listeners
|
|
listeners = [ReportingListener.instance]
|
|
listeners << SubscriptionListener.instance if ENV['BILLING_ENABLED']
|
|
listeners
|
|
end
|
|
end
|