diff --git a/application/symfony/src/Domain/ActionManagement/Create/AbstractCreateAction.php b/application/symfony/src/Domain/ActionManagement/Create/AbstractCreateAction.php index f0f9cb4..ab3cb94 100644 --- a/application/symfony/src/Domain/ActionManagement/Create/AbstractCreateAction.php +++ b/application/symfony/src/Domain/ActionManagement/Create/AbstractCreateAction.php @@ -10,12 +10,13 @@ use App\Domain\ActionManagement\AbstractAction; abstract class AbstractCreateAction extends AbstractAction implements CreateActionInterface { /** + * In general everybody should be allowed to create everything! * {@inheritdoc} * * @see \App\Domain\ActionManagement\AbstractAction::isSecure() */ protected function isSecure(): bool { - return $this->actionService->isRequestedActionSecure(); + return true; } }