add events and command to retrieve them using caldav calendars
This commit is contained in:
parent
4d013a4550
commit
3d8cacd62c
27 changed files with 1120 additions and 15 deletions
15
src/Repository/EventRepositoryQuery.php
Normal file
15
src/Repository/EventRepositoryQuery.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue