mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
6 lines
168 B
JavaScript
6 lines
168 B
JavaScript
Meteor.publish('currentRelease', function() {
|
|
if(Users.is.adminById(this.userId)){
|
|
return Releases.find({}, {sort: {number: -1}, limit: 1});
|
|
}
|
|
return [];
|
|
});
|