こんにちは、なぜこれが機能しないのかわかりませんか?
Notifications.update({'userId':Meteor.userId(), 'notifyUserId':notifyFriendId}, {$set: {read: 1}});
update allow メソッドもあります
Notifications = new Meteor.Collection('Notifications');
Notifications.allow({
update: function(userId, doc) {
return true;
}
});
エラーが表示されます:
Uncaught Error: Not permitted. Untrusted code may only update documents by ID. [403]