diff options
Diffstat (limited to 'controllers/app.php')
-rw-r--r-- | controllers/app.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/controllers/app.php b/controllers/app.php deleted file mode 100644 index 68872a48..00000000 --- a/controllers/app.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -namespace Controller; - -require_once __DIR__.'/base.php'; - -/** - * Application controller - * - * @package controller - * @author Frederic Guillot - */ -class App extends Base -{ - /** - * Redirect to the project creation page or the board controller - * - * @access public - */ - public function index() - { - if ($this->project->countByStatus(\Model\Project::ACTIVE)) { - $this->response->redirect('?controller=board'); - } - else { - $this->redirectNoProject(); - } - } -} |