The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/server/cron/oembed.js

11 lines
250 B

import { Meteor } from 'meteor/meteor';
export function oembedCron(SyncedCron) {
SyncedCron.add({
name: 'Cleanup OEmbed cache',
schedule(parser) {
return parser.cron('24 2 * * *');
},
job: () => Meteor.call('OEmbedCacheCleanup'),
});
}