mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
35 lines
790 B
PHP
35 lines
790 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC\Core\BackgroundJobs;
|
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use OCP\BackgroundJob\QueuedJob;
|
|
use OCP\IConfig;
|
|
use OCP\IUser;
|
|
use OCP\IUserManager;
|
|
|
|
class LookupServerSendCheckBackgroundJob extends QueuedJob {
|
|
public function __construct(
|
|
protected IConfig $config,
|
|
private IUserManager $userManager,
|
|
ITimeFactory $time,
|
|
) {
|
|
parent::__construct($time);
|
|
}
|
|
|
|
/**
|
|
* @param array $argument
|
|
*/
|
|
public function run($argument): void {
|
|
$this->userManager->callForSeenUsers(function (IUser $user) {
|
|
$this->config->setUserValue($user->getUID(), 'lookup_server_connector', 'dataSend', '1');
|
|
});
|
|
}
|
|
}
|