Skip to content

Commit

Permalink
Use consistent controller names
Browse files Browse the repository at this point in the history
refs #8624
  • Loading branch information
majentsch committed May 7, 2015
1 parent 83efc3a commit fff2d5c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -70,14 +70,14 @@ public function showAction()
$this->view->comments = $this->comments;
$this->view->listAllLink = Url::fromPath('monitoring/list/comments')
->setQueryString($this->filter->toQueryString());
$this->view->removeAllLink = Url::fromPath('monitoring/comments/remove-all')
$this->view->removeAllLink = Url::fromPath('monitoring/comments/delete-all')
->setParams($this->params);
}

/**
* Display the form for removing a comment list
*/
public function removeAllAction()
public function deleteAllAction()
{
$this->assertPermission('monitoring/command/comment/delete');

Expand Down
Expand Up @@ -104,14 +104,14 @@ public function showAction()
$this->view->downtimes = $this->downtimes;
$this->view->listAllLink = Url::fromPath('monitoring/list/downtimes')
->setQueryString($this->filter->toQueryString());
$this->view->removeAllLink = Url::fromPath('monitoring/downtimes/remove-all')
$this->view->removeAllLink = Url::fromPath('monitoring/downtimes/delete-all')
->setParams($this->params);
}

/**
* Display the form for removing a downtime list
*/
public function removeAllAction()
public function deleteAllAction()
{
$this->assertPermission('monitoring/command/downtime/delete');
$this->view->downtimes = $this->downtimes;
Expand Down

0 comments on commit fff2d5c

Please sign in to comment.