diff --git a/app/config/variables.php b/app/config/variables.php index 6215b18f7..a52f1950c 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -357,13 +357,29 @@ return [ 'description' => '', 'variables' => [ [ - 'name' => '_APP_MAINTENANCE_INTERVAL', - 'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before executing system cleanups and optimizations. The default value is 86400 seconds (1 day).', + 'name' => '_APP_MAINTENANCE_EXECUTION_LOG_RETENTION', + 'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the execution logs. The default value is 1209600 seconds (14 days).', + 'introduction' => '0.7.0', + 'default' => '1209600', + 'required' => false, + 'question' => '', + ], + [ + 'name' => '_APP_MAINTENANCE_AUDIT_LOG_RETENTION', + 'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the audit logs. The default value is 1209600 seconds (14 days).', + 'introduction' => '0.7.0', + 'default' => '1209600', + 'required' => false, + 'question' => '', + ], + [ + 'name' => '_APP_MAINTENANCE_ABUSE_LOG_RETENTION', + 'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the abuse logs. The default value is 86400 seconds (1 day).', 'introduction' => '0.7.0', 'default' => '86400', 'required' => false, 'question' => '', - ], + ] ], ], ],