标签: meteor
在我的meteor应用程序中,我有一个用户列表页面,管理员应该能够删除用户。
Meteor.users.remove({_id:this._id});
这不起作用。我怎么能这样做?
答案 0 :(得分:1)
修改Meteor.users.allow({remove:function() { return true }});并在那里添加一些自定义逻辑,只有在您是管理员时才允许此操作
Meteor.users.allow({remove:function() { return true }});