Basisimplementierung Songlist

This commit is contained in:
2019-11-24 15:57:20 +01:00
committed by smuddy
parent 9897e66d50
commit 87aeb62a2a
57 changed files with 777 additions and 59 deletions

16
firestore.rules Normal file
View File

@@ -0,0 +1,16 @@
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /user/{user} {
allow read: if true;
}
match /songs/{song} {
allow read: if true;
allow write: if true;
}
match /lastmodified/{lastmodified} {
allow read: if true;
allow write: if true;
}
}
}