mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Fix ContactsMenuController
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
aa6d8fcdbf
commit
e945f2bc3a
1 changed files with 3 additions and 4 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue