Fix ContactsMenuController

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-07-19 16:30:17 +02:00
parent aa6d8fcdbf
commit e945f2bc3a
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 3 additions and 4 deletions

View File

@ -54,7 +54,7 @@ class ContactsMenuController extends Controller {
* @NoAdminRequired
*
* @param string|null filter
* @return JSONResponse
* @return \JsonSerializable[]
*/
public function index($filter = null) {
return $this->manager->getEntries($this->userSession->getUser(), $filter);
@ -65,15 +65,14 @@ class ContactsMenuController extends Controller {
*
* @param integer $shareType
* @param string $shareWith
* @return JSONResponse
* @return JSONResponse|\JsonSerializable
*/
public function findOne($shareType, $shareWith) {
$contact = $this->manager->findOne($this->userSession->getUser(), $shareType, $shareWith);
if ($contact) {
return $contact;
} else {
return new JSONResponse([], Http::STATUS_NOT_FOUND);
}
return new JSONResponse([], Http::STATUS_NOT_FOUND);
}
}