wip stograge

This commit is contained in:
2024-09-20 13:39:45 +03:00
parent 32c8378020
commit 6d15591601
7 changed files with 26 additions and 9 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ use Lucent\Http\Controller\SetupController;
Route::get('/lucent/setup', [SetupController::class, 'setup']);
Route::get('/storage/templates/{any}', [FileController::class, 'template'])->where('any', '.*');
//Route::get('/storage/thumbs/{any}', [FileController::class, 'thumb'])->where('any', '.*');
Route::get('/lfs-{disk}/thumbs/{any}', [FileController::class, 'thumb'])->where('any', '.*');
Route::get('/lfs-{disk}/{disk}/{any}', [FileController::class, 'original'])->where('any', '.*');
Route::group([
'middleware' => ['web'],