file upload

This commit is contained in:
2019-12-16 21:58:03 +01:00
committed by smuddy
parent 8aeffc3c8f
commit ea24d1fbb3
25 changed files with 1887 additions and 505 deletions

View File

@@ -7,10 +7,14 @@ service cloud.firestore {
match /songs/{song} {
allow read: if true;
allow write: if true;
}
match /songs/{song}/files/{file} {
allow read: if true;
allow write: if true;
}
match /lastmodified/{lastmodified} {
allow read: if true;
allow write: if true;
}
}
}
}