<?php
namespace App\Controller;
use App\Entity\EventType;
use App\Entity\Partner;
use App\Entity\User;
use App\Repository\BotEventRepository;
use App\Repository\ConversionRepository;
use App\Repository\EventTypeRepository;
use App\Repository\PartnerRepository;
use App\Repository\PostbackRepository;
use App\Repository\RublesExchangeRateRepository;
use App\Repository\TgUserRepository;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Contracts\Cache\CacheInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* @IsGranted("ROLE_USER")
*/
class DashboardController extends AbstractController
{
/**
* @Route("/", name="dashboard")
*/
public function index(): Response
{
return $this->render('dashboard/index.html.twig', []);
}
}