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
Is your feature request related to a problem? Please describe.
Currently you have to manually refresh the notification page in dashboard if someone sends a registration request. So the organization would have to manually refresh the page just to check if they have any notifications pending or not.
Describe the solution you'd like
By using websockets, we can eliminate this problem. So, the notification page will be automatically updated when a new notification is received and a popup or alert dialog can notify the organization if new notification appears in dashboard page.
Describe alternatives you've considered
Polling can be implemented but websockets are more efficient.
Additional context
To implement websockets in a django application, checkout django channels: Django Channels Docs
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently you have to manually refresh the notification page in dashboard if someone sends a registration request. So the organization would have to manually refresh the page just to check if they have any notifications pending or not.
Describe the solution you'd like
By using websockets, we can eliminate this problem. So, the notification page will be automatically updated when a new notification is received and a popup or alert dialog can notify the organization if new notification appears in dashboard page.
Describe alternatives you've considered
Polling can be implemented but websockets are more efficient.
Additional context
To implement websockets in a django application, checkout django channels: Django Channels Docs
The text was updated successfully, but these errors were encountered: