QB RUN — Mobile Status: …
TAP TO START
Use the button only. Same button = jump.
rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /meta/global { allow read: if true; allow create, update: if true; } match /scores/{uid} { allow read: if true; allow create, update: if request.auth != null && request.auth.uid == uid; } } }