summaryrefslogtreecommitdiffstats
path: root/lib/Controller/UtilityApiController.php
diff options
context:
space:
mode:
authorDavid Guillot <david@guillot.me>2018-06-29 22:28:12 +0200
committerDavid Guillot <david@guillot.me>2018-07-01 23:01:54 +0200
commita84e80131a891184e234ddeee1ba0606ea898d7b (patch)
tree493d7a609192c86cb3c5b79a5e2ab8d193386f90 /lib/Controller/UtilityApiController.php
parentec3cc602f1bd363efe776ce4914319034d35c18e (diff)
feat(api): support new OC core login flow
* Base ApiController now needs IUserSession and extracts/serves IUser from it * All other API controllers now inherit from ApiController
Diffstat (limited to 'lib/Controller/UtilityApiController.php')
-rw-r--r--lib/Controller/UtilityApiController.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Controller/UtilityApiController.php b/lib/Controller/UtilityApiController.php
index 7fc6403c8..f88230c3b 100644
--- a/lib/Controller/UtilityApiController.php
+++ b/lib/Controller/UtilityApiController.php
@@ -7,14 +7,17 @@
*
* @author Alessandro Cosentino <cosenal@gmail.com>
* @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @author David Guillot <david@guillot.me>
* @copyright 2012 Alessandro Cosentino
* @copyright 2012-2014 Bernhard Posselt
+ * @copyright 2018 David Guillot
*/
namespace OCA\News\Controller;
use \OCP\IRequest;
use \OCP\IConfig;
+use \OCP\IUserSession;
use \OCP\AppFramework\Http;
use \OCA\News\Utility\Updater;
@@ -30,11 +33,12 @@ class UtilityApiController extends ApiController
public function __construct($appName,
IRequest $request,
+ IUserSession $userSession,
Updater $updater,
IConfig $settings,
StatusService $statusService
) {
- parent::__construct($appName, $request);
+ parent::__construct($appName, $request, $userSession);
$this->updater = $updater;
$this->settings = $settings;
$this->statusService = $statusService;