How to handle a subscribed user logging out?

655 Views Asked by At

In an application I am building, it is possible for a logged in user to receive specific push notifications related to activity their user account is participating in or subscribing to.

As it stands at the moment, if a user logs out, they remain subscribed and the service worker remains registered.

However, it would mean that push notifications they've subscribed to will still be received.

On the plus side, however, it means that if the original user logs in again, they won't need to go to their preferences and re-enable notifications and re-register a new service worker/subscription.

Does anyone have any examples of how to approach this in a secure way so notifications are not leaked after logging out, but maintaining the existing subscription in case they log back in? Is it even possible?

Thanks,

P

1

There are 1 best solutions below

2
On

Usually you have an endpoint in your database associated to a user ID, so that you can target that user with push notifications.

When the user logs out you can simply remove the association between the endpoint and the user ID in your database.