mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-10 11:35:52 +01:00
a2e1199907
* feat: support exporting json to excalidraw plus * add Firebase Storage rules to codebase * factor the onClick handler out * move excal icon to icons.tsx * handle export error
13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
rules_version = '2';
|
|
service firebase.storage {
|
|
match /b/{bucket}/o {
|
|
match /{migrations} {
|
|
match /{scenes}/{scene} {
|
|
allow get, write: if true;
|
|
// redundant, but let's be explicit'
|
|
allow list: if false;
|
|
}
|
|
}
|
|
}
|
|
}
|