diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-11-01 03:05:48 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-11-01 03:05:48 +0100 |
commit | 290d0714dfd4aae8e2c09194affd738de3df88f3 (patch) | |
tree | 796e439daa5786d4e0a99e7f428b9599eee5ba25 /core/routes.php | |
parent | 8509ca257f2feb55a9a545bec71574d1115afb08 (diff) | |
download | nextcloud-server-290d0714dfd4aae8e2c09194affd738de3df88f3.tar.gz nextcloud-server-290d0714dfd4aae8e2c09194affd738de3df88f3.zip |
Add routes for vcategory favorites.
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php index cc0aa53a21e..3ac943f7c6c 100644 --- a/core/routes.php +++ b/core/routes.php @@ -27,6 +27,12 @@ $this->create('core_ajax_vcategories_add', '/core/ajax/vcategories/add.php') ->actionInclude('core/ajax/vcategories/add.php'); $this->create('core_ajax_vcategories_delete', '/core/ajax/vcategories/delete.php') ->actionInclude('core/ajax/vcategories/delete.php'); +$this->create('core_ajax_vcategories_addtofavorites', '/core/ajax/vcategories/addToFavorites.php') + ->actionInclude('core/ajax/vcategories/addToFavorites.php'); +$this->create('core_ajax_vcategories_removefromfavorites', '/core/ajax/vcategories/removeFromFavorites.php') + ->actionInclude('core/ajax/vcategories/removeFromFavorites.php'); +$this->create('core_ajax_vcategories_favorites', '/core/ajax/vcategories/favorites.php') + ->actionInclude('core/ajax/vcategories/favorites.php'); $this->create('core_ajax_vcategories_edit', '/core/ajax/vcategories/edit.php') ->actionInclude('core/ajax/vcategories/edit.php'); // Routing |