mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
|
rules_version = '2';
|
||
|
service cloud.firestore {
|
||
|
match /databases/{database}/documents {
|
||
|
match /{document=**} {
|
||
|
allow get, write: if true;
|
||
|
// never set this to true, otherwise anyone can delete anyone else's drawing.
|
||
|
allow list: if false;
|
||
|
}
|
||
|
}
|
||
|
}
|