aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/rails/generators/channel/templates/assets/channel.coffee
blob: 69f945ca3f4cc56be8e1367a7e3a0a1c897f0dbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
App.<%= class_name.underscore %> = App.cable.subscriptions.create "<%= class_name %>Channel",
  connected: ->
    # Called when the subscription is ready for use on the server

  disconnected: ->
    # Called when the subscription has been terminated by the server

<% actions.each do |action| -%>
  <%= action %>: ->
    @perform '<%= action %>'
<% end -%>