wekan/server/publications/attachments.js
Martin Filser e75f423edd Removed "Orphaned Files" from Admin-Reports
- not necessary with Meteor-Files
2022-04-20 20:50:41 +02:00

22 lines
378 B
JavaScript

import Attachments from '/models/attachments';
import { ObjectID } from 'bson';
Meteor.publish('attachmentsList', function() {
const ret = Attachments.find(
{},
{
fields: {
_id: 1,
name: 1,
size: 1,
type: 1,
meta: 1,
},
sort: {
name: 1,
},
limit: 250,
},
).cursor;
return ret;
});