mirror of https://github.com/pixelfed/pixelfed
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.
25 lines
744 B
PHTML
25 lines
744 B
PHTML
|
2 weeks ago
|
<?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),
|
||
|
|
|
||
|
|
];
|