Loading lib/AppInfo/Application.php +1 −14 Original line number Diff line number Diff line Loading @@ -128,19 +128,6 @@ class Application extends App implements IBootstrap { * @inheritDoc */ public function boot(IBootContext $context): void { $context->getServerContainer()->registerService('SendInviteResponseMailJob', function($c){ return new SendInviteResponseMailJob( $c->get(IDBConnection::class), $c->get(IManager::class), $c->get(IMailer::class), $c->get(IL10N::class), $c->get(Defaults::class), $c->get(ILogger::class), $c->get(IUserManager::class), $c->get(L10NFactory::class), $c->get(IJobList::class), ); }); } } No newline at end of file lib/BackgroundJob/SendInviteResponseMailJob.php +2 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,8 @@ use OCP\Mail\IMailer; use OCP\IL10N; use OCP\IUserManager; use OCP\IUser; use OCP\Calendar\IManager; use OCP\L10N\IFactory; class SendInviteResponseMailJob extends QueuedJob { /** @var ILogger */ Loading Loading
lib/AppInfo/Application.php +1 −14 Original line number Diff line number Diff line Loading @@ -128,19 +128,6 @@ class Application extends App implements IBootstrap { * @inheritDoc */ public function boot(IBootContext $context): void { $context->getServerContainer()->registerService('SendInviteResponseMailJob', function($c){ return new SendInviteResponseMailJob( $c->get(IDBConnection::class), $c->get(IManager::class), $c->get(IMailer::class), $c->get(IL10N::class), $c->get(Defaults::class), $c->get(ILogger::class), $c->get(IUserManager::class), $c->get(L10NFactory::class), $c->get(IJobList::class), ); }); } } No newline at end of file
lib/BackgroundJob/SendInviteResponseMailJob.php +2 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,8 @@ use OCP\Mail\IMailer; use OCP\IL10N; use OCP\IUserManager; use OCP\IUser; use OCP\Calendar\IManager; use OCP\L10N\IFactory; class SendInviteResponseMailJob extends QueuedJob { /** @var ILogger */ Loading