summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-09-11 16:42:03 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-09-12 01:00:32 +0200
commit09f60e75c90e5734a3b11a0cca944bd42bc41665 (patch)
tree8ecdc41cd6bb7c2b338e8e82b2b1e090b4d82ce4 /appinfo
parent24cab805e7484a5d206974d05f8de38641435f8c (diff)
#342 implement export
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 617b63c53..90c5f2378 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -196,6 +196,12 @@ $this->create('news_export_opml', '/export/opml')->get()->action(
}
);
+$this->create('news_export_articles', '/export/articles')->get()->action(
+ function($params){
+ App::main('ExportController', 'articles', $params, new DIContainer());
+ }
+);
+
/**
* User Settings
*/