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
{{ message }}
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
Hello! I experienced some problems with catching service events on the client in my app. Therefore I've made a simple feathers app to reproduce the case.
I generated a simple todos service and made client-side page using example. The client calls create method of the service and should recieve created event. Unfortunately that doesn't work.
What do I wrong?
The text was updated successfully, but these errors were encountered:
The channels set up in a generated application by default only publish to authenticated users. You can modify this behaviour by changing https://github.com/kbychkov/feathers-events/blob/master/src/channels.js#L47 from return app.channel('authenticated'); to return app.channel('authenticated', 'anonymous'); but that should only be used for testing purposes.
Hello! I experienced some problems with catching service events on the client in my app. Therefore I've made a simple feathers app to reproduce the case.
I generated a simple
todos
service and made client-side page using example. The client callscreate
method of the service and should recievecreated
event. Unfortunately that doesn't work.What do I wrong?
The text was updated successfully, but these errors were encountered: