mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-03 22:02:57 +00: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;
|
|
}
|
|
}
|
|
}
|