mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
21 lines
328 B
JavaScript
21 lines
328 B
JavaScript
Searches = new Meteor.Collection("searches", {
|
|
schema: new SimpleSchema({
|
|
_id: {
|
|
type: String,
|
|
regEx: SimpleSchema.RegEx.Id,
|
|
optional: true
|
|
},
|
|
timestamp: {
|
|
type: Date
|
|
},
|
|
keyword: {
|
|
type: String
|
|
}
|
|
})
|
|
});
|
|
|
|
Searches.allow({
|
|
update: isAdminById
|
|
, remove: isAdminById
|
|
});
|
|
|