diff options
author | n-peugnet <n.peugnet@free.fr> | 2019-01-30 21:15:17 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-01-30 23:16:26 +0100 |
commit | 8ac5a09605992f1e434cb793ceca7497c6f46d23 (patch) | |
tree | 091f9879f8f94b849300fef2d1a1238f3881f78e /app/class/routes.php | |
parent | 396a5776cd043e899e4897ec50fc8edc52585512 (diff) | |
download | wcms-8ac5a09605992f1e434cb793ceca7497c6f46d23.tar.gz wcms-8ac5a09605992f1e434cb793ceca7497c6f46d23.zip |
feat: editBy to store the current editor of an art
Diffstat (limited to 'app/class/routes.php')
-rw-r--r-- | app/class/routes.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/class/routes.php b/app/class/routes.php index 9f3ce37..f3b9adf 100644 --- a/app/class/routes.php +++ b/app/class/routes.php @@ -43,6 +43,8 @@ class Routes ['GET', '/[cid:art]/log', 'Controllerart#log', 'artlog'], ['GET', '/[cid:art]/download', 'Controllerart#download', 'artdownload'], ['POST', '/[cid:art]/edit', 'Controllerart#update', 'artupdate'], + ['POST', '/[cid:art]/editby', 'Controllerart#editby', 'arteditby'], + ['POST', '/[cid:art]/removeeditby', 'Controllerart#removeeditby', 'artremoveeditby'], ['GET', '/[cid:art]/delete', 'Controllerart#confirmdelete', 'artconfirmdelete'], ['POST', '/[cid:art]/delete', 'Controllerart#delete', 'artdelete'], ['GET', '/[cid:art]/[*]', 'Controllerart#artdirect', 'artread/etoile'], |