mirror of
https://github.com/jlengrand/webbrain.git
synced 2026-03-10 08:51:21 +00:00
9 lines
209 B
Plaintext
9 lines
209 B
Plaintext
rules_version = '2';
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
match /{document=**} {
|
|
allow read, write: if
|
|
request.time < timestamp.date(2022, 5, 25);
|
|
}
|
|
}
|
|
} |