return reques.auth.uid == userId;
}
service cloud.firestore {
match /databases/{database}/documents {
match /chatrooms/{chatroomId} {
allow read: if isAuthenticated();
match /messages/{messageId} {
allow read: if isAuthenticated();
allow write: if isUserAuthorized(request.resource.data.sender.id);
}
}
match /users/{userId} {
allow update, write: if isUserAuthorized(userId);
allow read: if isAuthenticated();
}
}
}
ребята это security function для firebase. Когда я пишу сообщение оно исчезает в приложении и выдает ошибку FirebaseError: Missing or insufficient permissions. Юзер авторизованный. Есть решение на это?
И так ниукого нету да решение?
Обсуждают сегодня