lots
This commit is contained in:
@@ -41,16 +41,6 @@ Route::group([
|
||||
});
|
||||
|
||||
|
||||
Route::middleware(["lucent.auth"])->prefix("/schemas/")->group(function () {
|
||||
Route::get('/new/', [SchemaController::class, 'new']);
|
||||
Route::post('/', [SchemaController::class, 'create']);
|
||||
Route::get('/{name}/edit', [SchemaController::class, 'edit']);
|
||||
Route::put('/', [SchemaController::class, 'update']);
|
||||
Route::get('/{name}/delete', [SchemaController::class, 'delete']);
|
||||
Route::post('/delete', [SchemaController::class, 'postDelete']);
|
||||
});
|
||||
|
||||
|
||||
Route::middleware(["lucent.auth"])->prefix("/records")->group(function () {
|
||||
|
||||
Route::get('/new', [RecordController::class, 'new']);
|
||||
@@ -88,9 +78,6 @@ Route::group([
|
||||
});
|
||||
|
||||
|
||||
Route::get('/fs/cache/{path}', [FileController::class, 'get'])->where('path', '.*');
|
||||
Route::get('/fs/{path}', [FileController::class, 'get'])->where('path', '.*');
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user