mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
13 lines
325 B
JavaScript
13 lines
325 B
JavaScript
|
|
if (Meteor.isServer) {
|
||
|
|
Meteor.startup(() => {
|
||
|
|
// Date of 7 days ago
|
||
|
|
let lastWeek = new Date();
|
||
|
|
lastWeek.setDate(lastWeek.getDate() - 7);
|
||
|
|
|
||
|
|
presences.remove({ ttl: { $lte: lastWeek } });
|
||
|
|
|
||
|
|
// Create index for serverId that is queried often
|
||
|
|
presences._collection._ensureIndex({ serverId: -1 });
|
||
|
|
});
|
||
|
|
}
|