aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/rails/generators/channel/templates/channel.rb
blob: 5ca80dcd9deab9896f52b7fdfd211867a37ec027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<% module_namespacing do -%>
class <%= class_name %>Channel < ApplicationChannel
  def subscribed
    # stream_from "some_channel"
  end

  def unsubscribed
    # Any cleanup needed when channel is unsubscribed
  end
<% actions.each do |action| -%>

  def <%= action %>
  end
<% end -%>
end
<% end -%>