Approve or revoke access for users to use TeachMeMedical tools.
Loading users...
If you're not seeing users in the database, you may need to set up Firebase rules correctly.
Copy these rules to your Firebase Realtime Database rules in the Firebase Console:
{ "rules": { "users": { ".read": "auth != null && auth.token.email == 'pjleemd@gmail.com'", ".write": "auth != null && auth.token.email == 'pjleemd@gmail.com'", "$user_id": { ".read": "auth != null && (auth.uid == $user_id || auth.token.email == 'pjleemd@gmail.com')", ".write": "auth != null && (auth.uid == $user_id || auth.token.email == 'pjleemd@gmail.com')" } } } }
You must be logged in as an administrator to access this page.