|
@@ -246,7 +246,7 @@ discard block |
|
|
block discarded – undo |
|
246
|
246
|
* @throws SingleCircleNotFoundException |
|
247
|
247
|
*/ |
|
248
|
248
|
public function syncNextcloudUser(string $userId): FederatedUser { |
|
249
|
|
- $this->outputService->output('Syncing Nextcloud Account \'' . $userId . '\'', true); |
|
|
249
|
+ $this->outputService->output('Syncing Nextcloud Account \''.$userId.'\'', true); |
|
250
|
250
|
|
|
251
|
251
|
return $this->federatedUserService->getLocalFederatedUser($userId); |
|
252
|
252
|
} |
|
@@ -290,7 +290,7 @@ discard block |
|
|
block discarded – undo |
|
290
|
290
|
* @throws RequestBuilderException |
|
291
|
291
|
*/ |
|
292
|
292
|
public function syncNextcloudGroup(string $groupId): Circle { |
|
293
|
|
- $this->outputService->output('Syncing Nextcloud Group \'' . $groupId . '\'', true); |
|
|
293
|
+ $this->outputService->output('Syncing Nextcloud Group \''.$groupId.'\'', true); |
|
294
|
294
|
|
|
295
|
295
|
$circle = $this->federatedUserService->getGroupCircle($groupId); |
|
296
|
296
|
$group = $this->groupManager->get($groupId); |
|
@@ -363,7 +363,7 @@ discard block |
|
|
block discarded – undo |
|
363
|
363
|
*/ |
|
364
|
364
|
public function groupDeleted(string $groupId): void { |
|
365
|
365
|
$circle = new Circle(); |
|
366
|
|
- $circle->setName('group:' . $groupId) |
|
|
366
|
+ $circle->setName('group:'.$groupId) |
|
367
|
367
|
->setConfig(Circle::CFG_SYSTEM | Circle::CFG_NO_OWNER | Circle::CFG_HIDDEN) |
|
368
|
368
|
->setSource(Member::TYPE_GROUP); |
|
369
|
369
|
|
Please login to merge, or discard this patch.