Vulcan/collections/searches.js
2013-11-22 14:20:47 +09:00

7 lines
113 B
JavaScript

Searches = new Meteor.Collection('searches');
Searches.allow({
update: isAdminById
, remove: isAdminById
});