First commit

This commit is contained in:
Frédéric Guillot
2014-01-25 14:56:02 -05:00
commit 9383a15af6
80 changed files with 7519 additions and 0 deletions

16
controllers/app.php Normal file
View File

@@ -0,0 +1,16 @@
<?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();
}
}
}