Merge pull request #576 from csalzano/fix/remote-disk-backup-listing

Fix remote disk backups never appear in backup listing
This commit is contained in:
mchev
2026-03-26 09:16:13 +01:00
committed by GitHub
3 changed files with 16 additions and 3 deletions

View File

@@ -50,9 +50,11 @@ test('create backup', function () {
$response = getJson("/api/v1/backups?disk={$disk->driver}&&file_disk_id={$disk->id}");
$prefix = env('DYNAMIC_DISK_PREFIX', 'temp_');
$response->assertStatus(200)->assertJson([
'disks' => [
'local',
$prefix.$disk->driver,
],
]);
});