9 lines
274 B
JavaScript
9 lines
274 B
JavaScript
Chromebooks = new Mongo.Collection("chromebook");
|
|
Chromebooks.allow({
|
|
insert: function (userId, doc) {
|
|
return Roles.userIsInRole(Meteor.user()._id, ['admin']);
|
|
},
|
|
remove: function (userId, doc) {
|
|
return Roles.userIsInRole(Meteor.user()._id, ['admin']);
|
|
}
|
|
}); |