浏览代码

公司权限调整

kely 7 月之前
父节点
当前提交
8f08fb54eb
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      routes/api.php

+ 1 - 3
routes/api.php

@@ -233,9 +233,7 @@ Route::middleware(['auth:sanctum','account.limit'])->group(function () {
         Route::delete("file/{file}/hide", [API\FileController::class, "hide"])->name("file.hide");
         Route::get("file-bim-view/{file}", [API\FileController::class, "bimView"])->name("file.bim-view");
 
-        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");
         Route::get("container-attachments", [API\ContainerController::class, "attachments"])->name("container.attachments");