mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
import consumer from './consumer'
|
|
import CableReady from 'cable_ready'
|
|
|
|
consumer.subscriptions.create("SessionChannel", {
|
|
received(data) {
|
|
if (data.cableReady) CableReady.perform(data.operations)
|
|
}
|
|
});
|