Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e19ce5a1 authored by Akhil's avatar Akhil 🙂
Browse files

Fix imports

parent 69549961
Loading
Loading
Loading
Loading
Loading
+1 −14
Original line number Diff line number Diff line
@@ -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
+2 −0
Original line number Diff line number Diff line
@@ -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 */