summaryrefslogtreecommitdiffstats
path: root/apps/oauth2
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-05-18 15:16:50 +0200
committerLukas Reschke <lukas@statuscode.ch>2017-05-18 20:49:08 +0200
commit88afd8b22466e4dfab8e136f81440b160ee84acb (patch)
tree8ee6844ef288fc736659bb6778fc1a72ae63957d /apps/oauth2
parent9d91ebf8e022821db8af15cb4bc0463df7146491 (diff)
downloadnextcloud-server-88afd8b22466e4dfab8e136f81440b160ee84acb.tar.gz
nextcloud-server-88afd8b22466e4dfab8e136f81440b160ee84acb.zip
Cleanup code
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps/oauth2')
-rw-r--r--apps/oauth2/lib/Controller/OauthApiController.php2
-rw-r--r--apps/oauth2/templates/admin.php7
2 files changed, 6 insertions, 3 deletions
diff --git a/apps/oauth2/lib/Controller/OauthApiController.php b/apps/oauth2/lib/Controller/OauthApiController.php
index 97f8185149a..b97d85ae3e6 100644
--- a/apps/oauth2/lib/Controller/OauthApiController.php
+++ b/apps/oauth2/lib/Controller/OauthApiController.php
@@ -81,7 +81,7 @@ class OauthApiController extends Controller {
'token_type' => 'Bearer',
'expires_in' => 3600,
'refresh_token' => $newCode,
- 'user_id' => ($this->defaultTokenMapper->getTokenById($accessToken->getTokenId()))->getUID(),
+ 'user_id' => $this->defaultTokenMapper->getTokenById($accessToken->getTokenId())->getUID(),
]
);
}
diff --git a/apps/oauth2/templates/admin.php b/apps/oauth2/templates/admin.php
index 9c09499add3..d2e34e08db8 100644
--- a/apps/oauth2/templates/admin.php
+++ b/apps/oauth2/templates/admin.php
@@ -45,12 +45,15 @@ $clients = $_['clients'];
</tr>
</thead>
<tbody>
- <?php foreach ($clients as $client) { ?>
+ <?php
+ $imageUrl = $urlGenerator->imagePath('core', 'actions/toggle.svg');
+ foreach ($clients as $client) {
+ ?>
<tr>
<td><?php p($client->getName()); ?></td>
<td><?php p($client->getRedirectUri()); ?></td>
<td><code><?php p($client->getClientIdentifier()); ?></code></td>
- <td data-value="<?php p($client->getSecret()); ?>"><code>****</code><img class='show-oauth-credentials' src="<?php p($urlGenerator->imagePath('core', 'actions/toggle.svg'));?>"/></td>
+ <td data-value="<?php p($client->getSecret()); ?>"><code>****</code><img class='show-oauth-credentials' src="<?php p($imageUrl); ?>"/></td>
<td>
<form id="form-inline" class="delete" action="<?php p($urlGenerator->linkToRoute('oauth2.Settings.deleteClient', ['id' => $client->getId()])); ?>" method="POST">
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" />