You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can include <object :data="'/tracker?id=' + $socket.id" height="1" width="1"></object> which would include the relevant SocketID and the session data for that user, provided by Node-RED Auth Middleware
Back in ui-base, we watch for the relevant /tracker (or eqv.) HTTP call, and then map socketid to req.session.user
All onAction, onChange, etc. events can then recall from this map, and attach the user object
On Socket Disconnect, remove the relevant entry from the map
Description
onActionandonChangeto includemsg.socketidon all transmitted messages<object :data="'/tracker?id=' + $socket.id" height="1" width="1"></object>which would include the relevant SocketID and the session data for that user, provided by Node-RED Auth Middlewareui-base, we watch for the relevant/tracker(or eqv.) HTTP call, and then mapsocketidtoreq.session.useronAction,onChange, etc. events can then recall from this map, and attach the user objectEpic/Story
No response