mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
11 lines
246 B
Text
11 lines
246 B
Text
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;
|
|
}
|
|
}
|
|
}
|