mirror of https://github.com/docker/docs.git
12 lines
284 B
JavaScript
Executable File
12 lines
284 B
JavaScript
Executable File
Meteor.publish('apps', function () {
|
|
return Apps.find({}, {sort: {createdAt: -1}});
|
|
});
|
|
|
|
Meteor.publish('images', function () {
|
|
return Images.find({}, {sort: {createdAt: -1}});
|
|
});
|
|
|
|
Meteor.publish('installs', function () {
|
|
return Installs.find({}, {sort: {createdAt: -1}});
|
|
});
|