summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.rst1
-rw-r--r--controller/itemcontroller.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index 39367b96e..b6deee949 100644
--- a/README.rst
+++ b/README.rst
@@ -10,6 +10,7 @@ TODO
* Port coffeescript
* make export work -> generate xml with template
* implement findAll methods in itemBl and itemMapper
+* also pass in show all in itemcontroller
* make feed update work
* fix search plugin
* fix background job \ No newline at end of file
diff --git a/controller/itemcontroller.php b/controller/itemcontroller.php
index 7a9fb1aeb..e6358ce0e 100644
--- a/controller/itemcontroller.php
+++ b/controller/itemcontroller.php
@@ -53,6 +53,7 @@ class ItemController extends Controller {
$type = $this->params('type');
$id = $this->params('id');
+ // TODO: pass in showAll value
if($limit !== null){
$offset = $this->params('offset', 0);
$items = $this->itemBl->findAll($id, $type, $limit, $offset, $userId);