Add photobooth uploader download email
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-13 09:59:39 +01:00
parent b1250c6246
commit 24a1319cc2
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'])