mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
15 lines
373 B
JavaScript
15 lines
373 B
JavaScript
import consumer from "./consumer"
|
|
|
|
consumer.subscriptions.create("NotificationsChannel", {
|
|
connected() {
|
|
// console.log("Connected to the notifications 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
|
|
}
|
|
});
|