1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-30 08:26:59 +02:00

Server: Process user deletions once an hour

This commit is contained in:
Laurent Cozic 2022-06-28 11:05:09 +01:00
parent c21b28e6e6
commit f99b8dfde8

View File

@ -31,7 +31,7 @@ export default function(env: Env, models: Models, config: Config, services: Serv
{
id: TaskId.ProcessUserDeletions,
description: taskIdToLabel(TaskId.ProcessUserDeletions),
schedule: '0 */6 * * *',
schedule: '10 * * * *',
run: (_models: Models, services: Services) => services.userDeletion.runMaintenance(),
},