diff options
Diffstat (limited to 'application/api/controllers')
-rw-r--r-- | application/api/controllers/Links.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/application/api/controllers/Links.php b/application/api/controllers/Links.php index 1c7b41cd..01b7e783 100644 --- a/application/api/controllers/Links.php +++ b/application/api/controllers/Links.php | |||
@@ -41,7 +41,8 @@ class Links extends ApiController | |||
41 | 'searchterm' => $request->getParam('searchterm', ''), | 41 | 'searchterm' => $request->getParam('searchterm', ''), |
42 | ], | 42 | ], |
43 | false, | 43 | false, |
44 | $private === 'true' || $private === '1' | 44 | // to updated in another PR depending on the API doc |
45 | ($private === 'true' || $private === '1') ? 'private' : 'all' | ||
45 | ); | 46 | ); |
46 | 47 | ||
47 | // Return links from the {offset}th link, starting from 0. | 48 | // Return links from the {offset}th link, starting from 0. |