summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-26 12:36:25 +0100
committerMorris Jobke <hey@morrisjobke.de>2018-01-26 12:36:25 +0100
commit6bbea33133867c0fc7dc0ab1df74a38c30843141 (patch)
tree035b6310da06ca747733c36b5c09d0c97b886e22 /apps/files_external/lib
parent26682b6936dcc127393655754500a1848d28c7d0 (diff)
downloadnextcloud-server-6bbea33133867c0fc7dc0ab1df74a38c30843141.tar.gz
nextcloud-server-6bbea33133867c0fc7dc0ab1df74a38c30843141.zip
Simplify ternary operator statements
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_external/lib')
-rw-r--r--apps/files_external/lib/Controller/AjaxController.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/files_external/lib/Controller/AjaxController.php b/apps/files_external/lib/Controller/AjaxController.php
index 9c2953851f5..66cbcae3e8f 100644
--- a/apps/files_external/lib/Controller/AjaxController.php
+++ b/apps/files_external/lib/Controller/AjaxController.php
@@ -110,9 +110,7 @@ class AjaxController extends Controller {
$currentUser = $this->userSession->getUser();
// Non-admins can only edit their own credentials
- $allowedToEdit = (
- $this->groupManager->isAdmin($currentUser->getUID()) || $currentUser->getUID() === $uid
- ) ? true : false;
+ $allowedToEdit = ($this->groupManager->isAdmin($currentUser->getUID()) || $currentUser->getUID() === $uid);
if ($allowedToEdit) {
$this->globalAuth->saveAuth($uid, $user, $password);