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
With the ongoing efforts to transform the webapp into a PWA (#11), it would be good to think about how to leverage the additional features PWAs offer, one being push notifications. Some things they could be used for include:
Allowing users to subscribe to updates, specifically, be notified when questions from certain authors are answered, which would especially be useful for users who ask questions on the Q&A.
Implementing this would most likely leverage Supabase Realtime. This is already used by the bot to detect when questions are answered, but additional logic would be required for the latter two use cases.
The added benefit of implementing this is being able to frequently update the questions store in the webapp's indexeddb instance with smaller batches of data. This may completely eliminate the current method of updating indexeddb, which is refreshed every 6 hours.
The text was updated successfully, but these errors were encountered:
With the ongoing efforts to transform the webapp into a PWA (#11), it would be good to think about how to leverage the additional features PWAs offer, one being push notifications. Some things they could be used for include:
Implementing this would most likely leverage Supabase Realtime. This is already used by the bot to detect when questions are answered, but additional logic would be required for the latter two use cases.
The added benefit of implementing this is being able to frequently update the
questions
store in the webapp's indexeddb instance with smaller batches of data. This may completely eliminate the current method of updating indexeddb, which is refreshed every 6 hours.The text was updated successfully, but these errors were encountered: