Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
only sync users on explicit request
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl authored and backportbot[bot] committed Mar 28, 2025
commit e6cf080b9baf3505891664e5958e41539bf76cc0
4 changes: 3 additions & 1 deletion lib/Service/SyncService.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ public function sync(int $sync = self::SYNC_ALL): void {
$this->syncApps();
}

if ($this->shouldSync(self::SYNC_USERS, $sync)) {
// This is useless and too heavy on load
// we keep it available when running ./occ circles:sync --users
if ($sync === self::SYNC_USERS) {
$this->syncNextcloudUsers();
}

Expand Down
Loading