12345678910111213141516171819 |
- class Sessions::Event::Ping < Sessions::Event::Base
- =begin
- Event module to send pong to client connection.
- To execute this manually, just paste the following into the browser console
- App.WebSocket.send({event:'ping'})
- =end
- def run
- {
- event: 'pong',
- }
- end
- end
|