Files
AndyTranscribe/routes/web.php
T
ben bc6cb5efa4 Fix stuck transcriptions and make transcripts stoppable and searchable.
Raise queue retry_after above the job timeout, recover orphaned runs, allow stop/restart with any engine, and keep finished transcripts searchable in the recordings list.
2026-08-12 15:10:33 +02:00

17 lines
767 B
PHP

<?php
use App\Http\Controllers\CancelTranscriptionController;
use App\Http\Controllers\RecordingController;
use App\Http\Controllers\TranscribeController;
use App\Http\Controllers\TranscriptionStatusController;
use Illuminate\Support\Facades\Route;
Route::redirect('/', '/recordings');
Route::resource('recordings', RecordingController::class)->except(['edit', 'update']);
Route::post('recordings/{recording}/transcribe', TranscribeController::class)->name('recordings.transcribe');
Route::post('recordings/{recording}/transcribe/cancel', CancelTranscriptionController::class)
->name('recordings.transcribe.cancel');
Route::get('recordings/{recording}/transcription-status', TranscriptionStatusController::class)
->name('recordings.transcription-status');