I want to create something like invitations, not sure if its possible with firebase.
I don't want just anyone to be able to register and sign in to the app.
how can I control who can register?
I want to create something like invitations, not sure if its possible with firebase.
I don't want just anyone to be able to register and sign in to the app.
how can I control who can register?
Actually with Firebase you cannot prevent someone to register as a user of your app as long as you offer a form to register, so you will have to prevent read/write from accounts you don't authorize (i.e. without invitations) through database rules.
In addition you could clean up the undesired accounts through a CloudFunction that run every hour/day/...