dawarich/app/javascript/channels/imports_channel.js
2024-11-04 13:06:04 +01:00

15 lines
358 B
JavaScript

import consumer from "./consumer"
consumer.subscriptions.create("ImportsChannel", {
connected() {
console.log("Connected to the imports channel!");
},
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
}
});