Reputation: 67
I´m currently working on an androidapp that uses firebase for authentification and storage of userdata. Users can have a different "status" what allows them to use other parts of the app. To keep my user data structured I would prefer to use different Autentification databases for different user groups if thats possible? Otherwise what options do I have with firebase to solve the problem? Thx for your help!
Upvotes: 0
Views: 667
Reputation: 600131
A single Firebase project has a single store of users.
Since all it does is store the credentials for the user, there isn't a need for multiple lists in Firebase Authentication itself.
If your application needs to distinguish different types of users, you can:
I've put these in order of most common to least common, so you might want to study and consider them in that order.
Upvotes: 1