Enable scheduled ClickHouse backups across the job, API, and UI, and guard unsupported database types via isBackupSolutionAvailable(). Convert Stripe subscription sync from a job to an action with clearer discrepancy resolution, and add cloud:export-users plus cloud:cleanup-unverified-users with tests.
11 lines
397 B
PHP
11 lines
397 B
PHP
<div>
|
|
@if ($section === 'retention')
|
|
@include('livewire.project.database.backup-edit.retention')
|
|
@elseif ($section === 's3')
|
|
@include('livewire.project.database.backup-edit.s3')
|
|
@elseif ($section === 'danger')
|
|
@include('livewire.project.database.backup-edit.danger')
|
|
@else
|
|
@include('livewire.project.database.backup-edit.general')
|
|
@endif
|
|
</div>
|