mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Fix controller class import for autocomplete
Signed-off-by: jld3103 <jld3103yt@gmail.com>
This commit is contained in:
parent
15b80b6c1a
commit
79507435fa
1 changed files with 3 additions and 2 deletions
|
|
@ -10,6 +10,7 @@ declare(strict_types=1);
|
|||
* @author Joas Schilling <coding@schilljs.com>
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @author Kate Döen <kate.doeen@nextcloud.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
|
|
@ -30,7 +31,7 @@ declare(strict_types=1);
|
|||
namespace OC\Core\Controller;
|
||||
|
||||
use OCP\AppFramework\Http\DataResponse;
|
||||
use OCP\AppFramework\OCSController as Controller;
|
||||
use OCP\AppFramework\OCSController;
|
||||
use OCP\Collaboration\AutoComplete\AutoCompleteEvent;
|
||||
use OCP\Collaboration\AutoComplete\IManager;
|
||||
use OCP\Collaboration\Collaborators\ISearch;
|
||||
|
|
@ -38,7 +39,7 @@ use OCP\EventDispatcher\IEventDispatcher;
|
|||
use OCP\IRequest;
|
||||
use OCP\Share\IShare;
|
||||
|
||||
class AutoCompleteController extends Controller {
|
||||
class AutoCompleteController extends OCSController {
|
||||
private ISearch $collaboratorSearch;
|
||||
private IManager $autoCompleteManager;
|
||||
private IEventDispatcher $dispatcher;
|
||||
|
|
|
|||
Loading…
Reference in a new issue