remote calendar: authenticate to ms graph api

This commit is contained in:
2022-05-01 23:44:18 +02:00
parent 0212193940
commit a7ec843509
13 changed files with 238 additions and 34 deletions

View File

@@ -11,7 +11,7 @@ declare(strict_types=1);
namespace Chill\CalendarBundle;
use Chill\CalendarBundle\Synchro\DependencyInjection\SynchroCompilerPass;
use Chill\CalendarBundle\Synchro\DependencyInjection\RemoteCalendarCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
@@ -21,6 +21,6 @@ class ChillCalendarBundle extends Bundle
{
parent::build($container);
$container->addCompilerPass(new SynchroCompilerPass());
$container->addCompilerPass(new RemoteCalendarCompilerPass());
}
}