diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-04-17 13:40:48 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-04-17 15:55:23 +0200 |
commit | 1d1c8b4e692a581883295857a7351c0a14e2dfba (patch) | |
tree | b3174f5bcd14dc76cde01ece233cdd3134bf99c2 /apps/dav/lib/Controller | |
parent | 5382eeccb053ecf17bb8f7aacd57ae3cc4518d27 (diff) | |
download | nextcloud-server-1d1c8b4e692a581883295857a7351c0a14e2dfba.tar.gz nextcloud-server-1d1c8b4e692a581883295857a7351c0a14e2dfba.zip |
avoids users searches on backend, faster processing
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/dav/lib/Controller')
-rw-r--r-- | apps/dav/lib/Controller/BirthdayCalendarController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Controller/BirthdayCalendarController.php b/apps/dav/lib/Controller/BirthdayCalendarController.php index 244111e3aec..4964de0b216 100644 --- a/apps/dav/lib/Controller/BirthdayCalendarController.php +++ b/apps/dav/lib/Controller/BirthdayCalendarController.php @@ -93,7 +93,7 @@ class BirthdayCalendarController extends Controller { $this->config->setAppValue($this->appName, 'generateBirthdayCalendar', 'yes'); // add background job for each user - $this->userManager->callForAllUsers(function(IUser $user) { + $this->userManager->callForSeenUsers(function(IUser $user) { $this->jobList->add(GenerateBirthdayCalendarBackgroundJob::class, [ 'userId' => $user->getUID(), ]); |