- Gate volume backup retention and S3 controls by update permission - Preserve backup records when S3 deletion fails - Share SFTP download streaming with consistent missing-file handling - Handle schedule creation errors and link service database backups
21 lines
767 B
PHP
21 lines
767 B
PHP
<div>
|
|
@if ($section === 'retention')
|
|
@include('livewire.project.shared.storages.volume-backups.retention')
|
|
@elseif ($section === 's3')
|
|
@include('livewire.project.shared.storages.volume-backups.s3')
|
|
@elseif ($section === 'executions')
|
|
@include('livewire.project.shared.storages.volume-backups.executions')
|
|
@elseif ($section === 'danger')
|
|
@include('livewire.project.shared.storages.volume-backups.danger')
|
|
@else
|
|
@include('livewire.project.shared.storages.volume-backups.general')
|
|
@endif
|
|
|
|
@script
|
|
<script>
|
|
window.download_volume_backup_file = function(executionId) {
|
|
window.open('/download/volume-backup/' + executionId, '_blank');
|
|
}
|
|
</script>
|
|
@endscript
|
|
</div>
|