mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
7 lines
226 B
JavaScript
7 lines
226 B
JavaScript
![]() |
Meteor.publish('searches', function(limit) {
|
||
|
var limit = typeof limit === undefined ? 20 : limit;
|
||
|
if(Users.isAdminById(this.userId)){
|
||
|
return Searches.find({}, {limit: limit, sort: {timestamp: -1}});
|
||
|
}
|
||
|
return [];
|
||
|
});
|