Add photobooth uploader download email

This commit is contained in:
Codex Agent
2026-01-13 09:59:39 +01:00
parent 775786c6f1
commit 5f3d6af9f0
12 changed files with 309 additions and 1 deletions

View File

@@ -270,6 +270,8 @@ Route::prefix('v1')->name('api.v1.')->group(function () {
Route::post('/disable', [PhotoboothController::class, 'disable'])->name('tenant.events.photobooth.disable');
Route::post('/connect-codes', [PhotoboothConnectCodeController::class, 'store'])
->name('tenant.events.photobooth.connect-codes.store');
Route::post('/uploader-email', [PhotoboothController::class, 'sendUploaderDownloadEmail'])
->name('tenant.events.photobooth.uploader-email');
});
Route::get('members', [EventMemberController::class, 'index'])