summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-19 11:42:27 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-19 11:42:40 +0200
commit3e9a13efc9d95aac61191481fc9b90cfe3ca6e41 (patch)
treeff252c7c2a378de265831a144b9e407d4d23d276 /appinfo
parentd328d409986a4e8c504fe65c3bf7c5b445b21814 (diff)
added skeletons for google reader import
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 9acce6661..948a17566 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -124,6 +124,14 @@ $this->create('news_feeds_read', '/feeds/{feedId}/read')->post()->action(
}
);
+$this->create('news_feeds_import_googlereader', '/feeds/import/googlereader')
+->post()->action(
+ function($params){
+ App::main('ItemController', 'importGoogleReader', $params,
+ new DIContainer());
+ }
+);
+
/**
* Items
*/