blob: a371c7b5384912d12c3c28c3b5988c2309ed900c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Eventdb\Controllers;
use Icinga\Module\Eventdb\EventdbController;
class CommentsController extends EventdbController
{
/**
* @deprecated Moved to eventdb/events/details
*/
public function newAction()
{
$this->redirectNow($this->getRequest()->getUrl()->setPath('eventdb/events/details'));
}
}
|