You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/config/scheduledtasks.php

25 lines
744 B
PHTML

<?php
return [
/*
|--------------------------------------------------------------------------
| Scheduled Task Settings
|--------------------------------------------------------------------------
|
| Toggles for optional scheduled tasks defined in routes/scheduledtasks.php.
|
*/
/*
| Account storage reconciler
|
| Optional weekly scheduled task that recalculates users.storage_used from
| actual media, correcting drift on accounts that never upload or delete.
| The upload/delete/read paths already self-heal stale counters, so this is
| a background hygiene job and is disabled by default.
*/
'account_storage_reconcile' => env('ACCOUNT_STORAGE_RECONCILE', false),
];