Re: Notification system using django channels

2019-07-01 Thread Aldian Fazrihady
I am currently using https://developers.google.com/web/ilt/pwa/introduction-to-push-notifications for notifications as it allows notifications to be received while my app browser tabs are being closed. I use channels/websocket in my website for chatting feature. Unfortunately, I haven't written an

Notification system using django channels

2019-07-01 Thread mintu
hello guys, i want to know if is there any way where we can add notifications to our app using channels when ever a user clicks on a like button the post author should kind of get a message saying so and so person liked your post i can completely understand how channels work and all but i canno

Re: How to design a notification system using Django Channels 2? (architecture)

2019-04-13 Thread Aldian Fazrihady
Will the notifications still reach users when your app browser tab/window is closed? If yes, you need to use PWA push notifications instead of websocket. On Sat, 13 Apr 2019, 22:35 , <9co...@gmail.com> wrote: > I have a social network app and users can add posts and other users can > comment po

How to design a notification system using Django Channels 2? (architecture)

2019-04-13 Thread 9conky
I have a social network app and users can add posts and other users can comment posts. I need to send a notification to the author of a post and to the other users who commented on this post. Something similar to FB notifications: - commented your post - commented pos