|
@@ -143,8 +143,6 @@ Route::middleware(['auth:sanctum'])->group(function () {
|
|
|
Route::get("plan-by-assets", [API\PlanController::class, "byAssets"])->name("plan.by-assets");
|
|
|
Route::get("requirement-by-assets", [API\RequirementController::class, "byAssets"])->name("requirement.by-assets");
|
|
|
|
|
|
-
|
|
|
-
|
|
|
Route::get("project-tree/{project_id}", [API\ProjectController::class, "treeIndex"])->name("project.project-tree");
|
|
|
|
|
|
Route::get("project-link-requirements-group/{project_id}",[API\ProjectController::class, "requirementsLinkGroup"])->name("project.link-requirements-group");
|
|
@@ -163,5 +161,7 @@ Route::middleware(['auth:sanctum'])->group(function () {
|
|
|
Route::get("notification", [API\NotificationController::class, "index"])->name("notification.index");
|
|
|
Route::get("notification/unread", [API\NotificationController::class, "unread"])->name("notification.unread");
|
|
|
Route::post("notification/mark-as-read", [API\NotificationController::class, "markAsRead"])->name("notification.mark-as-read");
|
|
|
+
|
|
|
+ Route::get("container-linkage/{library_id}", [API\ContainerController::class, "linkage"])->name("container.linkage");
|
|
|
});
|
|
|
});
|