Connect CalDAV todos to DB-Items, finish todo component and add it to pipeline items

This commit is contained in:
2026-02-24 16:15:21 +01:00
parent 7e2094847f
commit 823cd6391d
27 changed files with 605 additions and 205 deletions
+3 -1
View File
@@ -29,7 +29,8 @@
Route::get('/customers/{id}', [CustomerController::class, 'single']);
Route::get('/customers', [CustomerController::class, 'index']);
Route::get('/notes/{modelType}/{notableId}', [NoteController::class, 'index']);
Route::get('/notes', [NoteController::class, 'index']);
Route::get('/notes/{modelType}/{notableId}', [NoteController::class, 'notesForModel']);
Route::delete('/notes/{id}', [NoteController::class, 'delete']);
Route::post('/notes', [NoteController::class, 'store'])
->name('customers.notes.store');
@@ -39,6 +40,7 @@
return \App\Models\TodoType::all();
});
Route::apiResource('/todos', TodoController::class);
Route::get('/todos/{modelType}/{notableId}', [TodoController::class, 'todosForModel']);
Route::get('/products/', [ProductController::class, 'index']);
Route::get('/products/{id}', [ProductController::class, 'single']);