Replace sparkbooth upload with photobooth uploader

This commit is contained in:
soeren
2026-01-29 12:16:27 +01:00
parent e37f533bcb
commit 084c52ba2d
27 changed files with 2163 additions and 50 deletions

View File

@@ -2,7 +2,7 @@
namespace Tests\Feature\Filament;
use App\Filament\Pages\SparkboothConnections;
use App\Filament\Pages\PhotoboothConnections;
use App\Models\Gallery;
use App\Models\Role;
use App\Models\User;
@@ -11,7 +11,7 @@ use Illuminate\Foundation\Testing\DatabaseTransactions;
use Livewire\Livewire;
use Tests\TestCase;
class SparkboothConnectionsTest extends TestCase
class PhotoboothConnectionsTest extends TestCase
{
use DatabaseTransactions;
@@ -36,7 +36,7 @@ class SparkboothConnectionsTest extends TestCase
$gallery->setUploadToken('tokentest');
$gallery->save();
Livewire::test(SparkboothConnections::class)
Livewire::test(PhotoboothConnections::class)
->callTableAction('deleteConnection', $gallery);
$updated = $gallery->fresh();