Remove some vestigal methods from base controller

This commit is contained in:
Timothy Warren 2015-10-19 13:58:59 -04:00
parent 5f5bf66c75
commit 77399e3fa4
1 changed files with 0 additions and 31 deletions

View File

@ -182,37 +182,6 @@ class Controller {
$http->redirect($url, $code);
}
/**
* Clear the api session
*
* @return void
*/
public function logout()
{
$this->response->redirect->seeOther($this->urlGenerator->full_url(''));
}
/**
* Show the login form
*
* @param string $status
* @return void
*/
public function login($status = "")
{
$message = "";
if ($status != "")
{
$message = $this->show_message('error', $status);
}
$this->outputHTML('login', [
'title' => 'Api login',
'message' => $message
]);
}
/**
* Attempt to log in with the api
*