mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
Always execute migration 9999 (can be used to fix things manually) Optimized meal plan navigation / date range filtering Prepared next release Pulled translations from Transifex Various code optimizations
14 lines
364 B
PHP
14 lines
364 B
PHP
<?php
|
|
|
|
namespace Grocy\Controllers;
|
|
|
|
class CalendarController extends BaseController
|
|
{
|
|
public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
return $this->renderPage($response, 'calendar', [
|
|
'fullcalendarEventSources' => $this->getCalendarService()->GetEvents()
|
|
]);
|
|
}
|
|
}
|