monitoring: Remove deprecated actions from the ShowController

Removed:

* show/service
* show/host
* show/history
This commit is contained in:
Eric Lippmann 2015-08-28 09:34:23 +02:00
parent 3c9e67eb46
commit 411ad407b1
1 changed files with 0 additions and 28 deletions

View File

@ -19,34 +19,6 @@ class ShowController extends Controller
*/
protected $backend;
/**
* @deprecated
*/
public function serviceAction()
{
$this->redirectNow(Url::fromRequest()->setPath('monitoring/service/show'));
}
/**
* @deprecated
*/
public function hostAction()
{
$this->redirectNow(Url::fromRequest()->setPath('monitoring/host/show'));
}
/**
* @deprecated
*/
public function historyAction()
{
if ($this->params->has('service')) {
$this->redirectNow(Url::fromRequest()->setPath('monitoring/service/history'));
}
$this->redirectNow(Url::fromRequest()->setPath('monitoring/host/history'));
}
public function contactAction()
{
$contactName = $this->params->getRequired('contact_name');