feat: keep rejected applications visible, enable deletion for admins

This commit is contained in:
Björn Fromme
2024-10-29 17:34:52 +01:00
parent 94b6f73511
commit 69553fb1b3
4 changed files with 22 additions and 18 deletions
@@ -4,8 +4,10 @@ namespace App\Controller\Admin\Application;
use App\Entity\Application;
use App\Event\ApplicationDeletedEvent;
use App\Htmx\HxRedirectResponse;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
use Symfony\Component\Security\Http\Attribute\IsGranted;
@@ -22,20 +24,26 @@ class DeleteController extends AbstractController
#[Route('/admin/application/delete/{uuid}', name: 'app_admin_application_delete')]
#[IsGranted('ROLE_ADMINISTRATIVE')]
#[IsGranted('DELETE', subject: 'application')]
public function index(Application $application): Response
public function index(Application $application, Request $request): Response
{
$this->entityManager->remove($application);
$this->entityManager->flush();
if (true === $request->isMethod(Request::METHOD_POST)) {
$this->entityManager->remove($application);
$this->entityManager->flush();
$this->eventDispatcher->dispatch(
new ApplicationDeletedEvent($application),
ApplicationDeletedEvent::NAME
);
$this->eventDispatcher->dispatch(
new ApplicationDeletedEvent($application),
ApplicationDeletedEvent::NAME
);
$this->addFlash('success', 'Die Bewerbung wurde gelöscht');
$this->addFlash('success', 'Die Bewerbung wurde gelöscht');
return $this->redirectToRoute('app_administrative_assignment_detail', [
'uuid' => $application->getAssignment()->getUuid(),
return new HxRedirectResponse($this->generateUrl('app_administrative_assignment_detail', [
'uuid' => $application->getAssignment()->getUuid(),
]));
}
return $this->render('admin/application/modal_delete.html.twig', [
'application' => $application,
]);
}
}
+1 -5
View File
@@ -83,12 +83,8 @@ class ApplicationRepository extends ServiceEntityRepository
->select('application', 'teamer', 'feedback')
->innerJoin('application.teamer', 'teamer')
->leftJoin('teamer.feedback', 'feedback')
->where($qb->expr()->andX(
$qb->expr()->eq('application.assignment', ':assignment'),
$qb->expr()->neq('application.status', ':status')
))
->where($qb->expr()->eq('application.assignment', ':assignment'))
->setParameter('assignment', $assignment)
->setParameter('status', Application::STATUS_REJECTED)
->getQuery()
->getResult()
;
+2 -2
View File
@@ -44,8 +44,8 @@ class ApplicationVoter extends Voter
if ($this->security->isGranted('ROLE_ADMINISTRATIVE') && in_array($attribute, $adminAttributes)) {
$assignment = $application->getAssignment();
return match ($attribute) {
static::VIEW, static::STATUS => Application::STATUS_REJECTED !== $status,
static::DELETE => Application::STATUS_REJECTED === $status,
static::STATUS, static::DELETE => true,
static::VIEW => Application::STATUS_REJECTED !== $status,
static::DISPOSE => Application::STATUS_REJECTED !== $status
&& $assignment->getAvailableDispositions() > $assignment->getDispositions()->count(),
default => false,
@@ -2,6 +2,6 @@
{% block content %}
<div>
Möchtest du die Bewerbung von {{ application.teamer }} wirklich löschen?
Möchtest du die Bewerbung von <em>{{ application.teamer }}</em> wirklich löschen?
</div>
{% endblock %}