summaryrefslogtreecommitdiffstats
path: root/lib/Controller/OAuthController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/OAuthController.php')
-rw-r--r--lib/Controller/OAuthController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Controller/OAuthController.php b/lib/Controller/OAuthController.php
index 680d4f08..0b1f74db 100644
--- a/lib/Controller/OAuthController.php
+++ b/lib/Controller/OAuthController.php
@@ -71,7 +71,7 @@ class OAuthController extends Controller {
LoggerInterface $logger,
IInitialState $initialState
) {
- parent::__construct(Application::APP_NAME, $request);
+ parent::__construct(Application::APP_ID, $request);
$this->userSession = $userSession;
$this->urlGenerator = $urlGenerator;
@@ -187,7 +187,7 @@ class OAuthController extends Controller {
$client = $this->clientService->getFromClientId($client_id);
$this->initialState->provideInitialState('appName', $client->getAppName());
- return new TemplateResponse(Application::APP_NAME, 'oauth2', [
+ return new TemplateResponse(Application::APP_ID, 'oauth2', [
'request' =>
[
'clientId' => $client_id,