mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
import consumer from "./consumer";
|
|
import CableReady from "cable_ready";
|
|
|
|
consumer.subscriptions.create("SessionChannel", {
|
|
received(data) {
|
|
if (data.cableReady) CableReady.perform(data.operations);
|
|
},
|
|
});
|