"notification": {
"title": title,
"body": message,
"tag": tag
}
service firebase.storage {
match /b/{bucket}/o {
match /publicFolder/{allPaths=**} {
allow read, write;
}
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}