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
How would I use this to only update the specific user.
Currently the socket I have set up updates a collection for any updates by any user. How would I limit the updates on my view to the ones done by someone logged in with my username (i.e. mine or me on another device.)
Is there a simple way to register for certain updates?
Currently have in my Angular
socket.syncUpdates('transaction', transactions);
and in my Node Server
socket.emit('transaction:save', doc);
Thanks.
Ben
The text was updated successfully, but these errors were encountered:
How would I use this to only update the specific user.
Currently the socket I have set up updates a collection for any updates by any user. How would I limit the updates on my view to the ones done by someone logged in with my username (i.e. mine or me on another device.)
Is there a simple way to register for certain updates?
Currently have in my Angular
socket.syncUpdates('transaction', transactions);
and in my Node Server
socket.emit('transaction:save', doc);
Thanks.
Ben
The text was updated successfully, but these errors were encountered: