summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-29 13:25:04 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-29 13:30:01 +0200
commit3fc18156ae0b586e8de0c82949acfa6291317536 (patch)
tree201e97511bea44c58b5e9d78d8cf36ae2e2b54f9 /appinfo
parenta03b54c6a59837d0045c140ea7aef3fae95daa95 (diff)
go back to order by id, fix #138, use a newest item id to prevent marking items as read that the user didnt see yet fix #141, also update the starred count periodically
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index f6b05ed01..fd7b6ad20 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -141,12 +141,6 @@ $this->create('news_items', '/items')->get()->action(
}
);
-$this->create('news_items_starred', '/items/starred')->get()->action(
- function($params){
- App::main('ItemController', 'starred', $params, new DIContainer());
- }
-);
-
$this->create('news_items_read', '/items/{itemId}/read')->post()->action(
function($params){
App::main('ItemController', 'read', $params, new DIContainer());