I want to know what should be the rules in firebase to implement this? Suppose I just want to authenticate if the user email is thisIsExampleEmail@gmail.com and no other users can read and write the data of firebase firestore.
Firebase Rules
allow read, write:if request;
what else to add in this to implement the above
Thanks!