summaryrefslogtreecommitdiffstats
path: root/appinfo/routes.php
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index bc1b7ad7d..6e21bf5f3 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -134,6 +134,12 @@ $this->create('news_feeds_move', '/feeds/{feedId}/move')->post()->action(
}
);
+$this->create('news_feeds_rename', '/feeds/{feedId}/rename')->post()->action(
+ function($params){
+ App::main('FeedController', 'rename', $params, new DIContainer());
+ }
+);
+
$this->create('news_feeds_read', '/feeds/{feedId}/read')->post()->action(
function($params){
App::main('FeedController', 'read', $params, new DIContainer());