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.
26 lines
827 B
PHP
26 lines
827 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Scheduled Task Settings
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Toggles for optional scheduled tasks defined in routes/scheduledtasks.php.
|
|
|
|
|
*/
|
|
|
|
/*
|
|
| Account storage reconciler
|
|
|
|
|
| Weekly scheduled task that recalculates users.storage_used from actual
|
|
| media, correcting drift. The incremental charge/refund on the
|
|
| upload/delete paths is best-effort (a finalize-job retry can over-count),
|
|
| so this reconciler is the authoritative backstop and is enabled by
|
|
| default. The upload/delete/read paths also self-heal stale counters inline.
|
|
*/
|
|
'account_storage_reconcile' => env('ACCOUNT_STORAGE_RECONCILE', true),
|
|
|
|
];
|