diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-08-21 11:35:40 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-08-21 11:35:40 +0200 |
commit | 63202efc75a63ef30e58c12d602ea95a960a0976 (patch) | |
tree | 1c8bc40941ab8abdb18f68066d6ab64674f465d5 /app/class/routes.php | |
parent | 388bd7c3aff8b440febd83598003f96d5a746505 (diff) | |
download | wcms-63202efc75a63ef30e58c12d602ea95a960a0976.tar.gz wcms-63202efc75a63ef30e58c12d602ea95a960a0976.zip |
New feature : bookmarks
- public bookmarks stored in config.json
- personnal bookmarks stored in user data
Diffstat (limited to 'app/class/routes.php')
-rw-r--r-- | app/class/routes.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/class/routes.php b/app/class/routes.php index c0b686b..13444fd 100644 --- a/app/class/routes.php +++ b/app/class/routes.php @@ -18,6 +18,7 @@ class Routes ['POST', '/', 'Controllerhome#desktop', 'homequery'], ['POST', '/columns', 'Controllerhome#columns', 'homecolumns'], ['POST', '/renderall', 'Controllerhome#renderall', 'homerenderall'], + ['POST', '/bookmark', 'Controllerhome#bookmark', 'homebookmark'], ['POST', '/upload', 'Controllerart#upload', 'artupload'], ['POST', '/!co', 'Controllerconnect#log', 'log'], ['GET', '/!co', 'Controllerconnect#connect', 'connect'], |