Rename photobooth upload endpoint
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-12 20:05:09 +01:00
parent 93bed358ba
commit e52720a3cb
4 changed files with 8 additions and 8 deletions

View File

@@ -153,8 +153,8 @@ Route::prefix('v1')->name('api.v1.')->group(function () {
->middleware('signed')
->name('gallery.photos.asset');
Route::post('/photobooth/sparkbooth/upload', [SparkboothUploadController::class, 'store'])
->name('photobooth.sparkbooth.upload');
Route::post('/photobooth/upload', [SparkboothUploadController::class, 'store'])
->name('photobooth.upload');
Route::post('/photobooth/connect', [PhotoboothConnectController::class, 'store'])
->middleware('throttle:photobooth-connect')
->name('photobooth.connect');