17 lines
476 B
PHP
17 lines
476 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'id' => 'backups.create_backup',
|
|
'legacy_name' => 'backup',
|
|
'name' => 'Create backup',
|
|
'description' => 'Creates the scheduled backup bundle through the configured backup store.',
|
|
'module' => 'backups',
|
|
'handler' => 'backup',
|
|
'schedule' => ['type' => 'interval', 'seconds' => 43200],
|
|
'timeout_seconds' => 1800,
|
|
'estimated_duration_ms' => 60000,
|
|
'priority' => 115,
|
|
],
|
|
];
|