add events and command to retrieve them using caldav calendars

This commit is contained in:
Simon Vieille 2022-04-16 23:29:17 +02:00
commit 3d8cacd62c
Signed by: deblan
GPG key ID: 03383D15A1D31745
27 changed files with 1120 additions and 15 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace App\Repository;
use App\Core\Repository\RepositoryQuery;
use Knp\Component\Pager\PaginatorInterface;
use App\Repository\EventRepository as Repository;
class EventRepositoryQuery extends RepositoryQuery
{
public function __construct(Repository $repository, PaginatorInterface $paginator)
{
parent::__construct($repository, 'e', $paginator);
}
}