If allowing multiple auth providers in firebase (twitter, facebook, password), is it best to store users in this manner:
/users/[auth.id]_[auth.provider]/...
It looks like there could be overlap in auth.id based on the provider.
Most of the examples have the security file only checking auth.id. I'm attempting to avoid the complexity of creating my own user ids.
Thoughts?