Multiple accounts / sessions switching
-
For a web-based app, is it possible for a user to sign-in under different accounts and freely switch between them?
We have an application where users can create workspaces, but the account tied to each workspace is unique to that workspace. We'd like for the user to be able to sign-in to as many workspaces as they'd like but also switch between the accounts easily.
If this is possible, how would one do it? We do this with Cognito, but it's a gigantic hack with lots of local storage manipulations.
-
@theo This is a good use case for entity management. You can model workspaces as entities and then grant a single user account permissions for each workspace as needed.
This is a slightly different model, because the user still has one account, though.
Here's more details: https://fusionauth.io/docs/v1/tech/core-concepts/entity-management
Note that entity management is a feature requiring a paid license.