public function newFileAction()
{
$journal = $this->get('ojs.journal_service')->getSelectedJournal();
if (!$this->isGranted('CREATE', $journal, 'issues')) {
throw new AccessDeniedException();
}
return $this->createForm(new IssueFileType(), null, ['csrf_protection' => false]);
}