mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
16 lines
370 B
JavaScript
16 lines
370 B
JavaScript
|
|
import consumer from "./consumer"
|
||
|
|
|
||
|
|
consumer.subscriptions.create("PointsChannel", {
|
||
|
|
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
|
||
|
|
}
|
||
|
|
});
|