official_module/config/events.rb

18 lines
843 B
Ruby

WebsocketRails::EventMap.describe do
# You can use this file to map incoming events to controller actions.
# One event can be mapped to any number of controller actions. The
# actions will be executed in the order they were subscribed.
#
# Uncomment and edit the next line to handle the client connected event:
# subscribe :client_connected, :to => Controller, :with_method => :method_name
#
# Here is an example of mapping namespaced events:
# namespace :product do
# subscribe :new, :to => ProductController, :with_method => :new_product
# end
# The above will handle an event triggered on the client like `product.new`.
subscribe :update_notifications, :to => PushController, :with_method => :tag_notification
subscribe :client_disconnected, 'push#bye'
subscribe :connection_closed, 'push#bye'
end