Files
Kanboard-Prod/controllers/app.php
Frédéric Guillot 9383a15af6 First commit
2014-01-25 14:56:02 -05:00

17 lines
301 B
PHP

<?php
namespace Controller;
class App extends Base
{
public function index()
{
if ($this->project->countByStatus(\Model\Project::ACTIVE)) {
$this->response->redirect('?controller=board');
}
else {
$this->redirectNoProject();
}
}
}