diff options
| author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-19 22:12:12 -0400 |
|---|---|---|
| committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-19 22:12:12 -0400 |
| commit | a04ecbde778decfdea7200806a6b1144861ae05f (patch) | |
| tree | e4670e3013734d9c7bd201f5d6ef1fbaae13d3b5 /controllers/app.php | |
| parent | 5aacb6a76351889a6ec5ed01c8e80f139c2b2027 (diff) | |
Add RememberMe feature and authentications history
Diffstat (limited to 'controllers/app.php')
| -rw-r--r-- | controllers/app.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/controllers/app.php b/controllers/app.php index e72ac9d0..68872a48 100644 --- a/controllers/app.php +++ b/controllers/app.php @@ -4,8 +4,19 @@ 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)) { |
