From 84ffb847d53e3d9b0e961a57fe8e7ef935c03afc Mon Sep 17 00:00:00 2001 From: wanghousheng Date: Sun, 4 Feb 2024 17:28:29 +0800 Subject: [PATCH] 1 --- app/api/controller/Article.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/api/controller/Article.php b/app/api/controller/Article.php index 0b7deba1..c12f5879 100644 --- a/app/api/controller/Article.php +++ b/app/api/controller/Article.php @@ -61,7 +61,7 @@ class Article extends Controller */ public function add(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $title = $this->request->post('title'); @@ -97,7 +97,7 @@ class Article extends Controller */ public function edit(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $articleId = intval($this->request->post('article_id')); @@ -140,7 +140,7 @@ class Article extends Controller */ public function delete(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $articleId = intval($this->request->post('article_id')); @@ -163,7 +163,7 @@ class Article extends Controller */ public function addCategory(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $name = $this->request->post('name'); @@ -191,7 +191,7 @@ class Article extends Controller */ public function editCategory(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $categoryId = intval($this->request->post('category_id')); @@ -226,7 +226,7 @@ class Article extends Controller */ public function delCategory(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $categoryId = intval($this->request->post('category_id')); @@ -250,7 +250,7 @@ class Article extends Controller */ public function categoryList(): Json { - if (UserService::isStore()) { + if (!UserService::isStore()) { throwError("无权限", 403); } $model = new \app\api\model\article\Category;