Vulcan/collections/searches.js

8 lines
113 B
JavaScript
Raw Normal View History

2013-11-22 14:20:47 +09:00
Searches = new Meteor.Collection('searches');
Searches.allow({
update: isAdminById
, remove: isAdminById
});