mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
12 lines
246 B
Plaintext
12 lines
246 B
Plaintext
rules_version = '2';
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{files}/rooms/{room}/{file} {
|
|
allow get, write: if true;
|
|
}
|
|
match /{files}/shareLinks/{shareLink}/{file} {
|
|
allow get, write: if true;
|
|
}
|
|
}
|
|
}
|