mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 00:10:13 +01:00
24 lines
423 B
JavaScript
24 lines
423 B
JavaScript
import Attachments from '/models/attachments';
|
|
import { ObjectID } from 'bson';
|
|
|
|
Meteor.publish('attachmentsList', function(limit) {
|
|
const ret = Attachments.find(
|
|
{},
|
|
{
|
|
fields: {
|
|
_id: 1,
|
|
name: 1,
|
|
size: 1,
|
|
type: 1,
|
|
meta: 1,
|
|
path: 1,
|
|
versions: 1,
|
|
},
|
|
sort: {
|
|
name: 1,
|
|
},
|
|
limit: limit,
|
|
},
|
|
).cursor;
|
|
return ret;
|
|
});
|