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/apps/meteor/lib/getCronAdvancedTimerFromPre...

12 lines
313 B

export function getCronAdvancedTimerFromPrecisionSetting(precision: '0' | '1' | '2' | '3'): string {
switch (precision) {
case '0':
return '*/30 * * * *'; // 30 minutes
case '1':
return '0 * * * *'; // hour
case '2':
return '0 */6 * * *'; // 6 hours
case '3':
return '0 0 * * *'; // day
}
}