Sha256: f041425c60d1035f1afb56362e587048d061e9ba8a42663e0e3d73b0bfbbca09
Contents?: true
Size: 572 Bytes
Versions: 149
Compression:
Stored size: 572 Bytes
Contents
import consumer from "./consumer" consumer.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 }, received(data) { // Called when there's incoming data on the websocket for this channel }<%= actions.any? ? ",\n" : '' %> <% actions.each do |action| -%> <%=action %>: function() { return this.perform('<%= action %>'); }<%= action == actions[-1] ? '' : ",\n" %> <% end -%> });
Version data entries
149 entries across 144 versions & 12 rubygems