summaryrefslogtreecommitdiff
path: root/app/Api/App.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-16 21:07:29 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-16 21:07:29 -0400
commitb1e2ca00ce7375ffcbe5e927135c8892036e6bd6 (patch)
tree07ce453261f6493de7c901cfd8b4f0d9af85556d /app/Api/App.php
parent4514bc1d4b4abff23902e46da76e70f13a3647eb (diff)
Rename Api classes
Diffstat (limited to 'app/Api/App.php')
-rw-r--r--app/Api/App.php47
1 files changed, 0 insertions, 47 deletions
diff --git a/app/Api/App.php b/app/Api/App.php
deleted file mode 100644
index 1c4737c0..00000000
--- a/app/Api/App.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-namespace Kanboard\Api;
-
-/**
- * App API controller
- *
- * @package api
- * @author Frederic Guillot
- */
-class App extends \Kanboard\Core\Base
-{
- public function getTimezone()
- {
- return $this->timezone->getCurrentTimezone();
- }
-
- public function getVersion()
- {
- return APP_VERSION;
- }
-
- public function getDefaultTaskColor()
- {
- return $this->color->getDefaultColor();
- }
-
- public function getDefaultTaskColors()
- {
- return $this->color->getDefaultColors();
- }
-
- public function getColorList()
- {
- return $this->color->getList();
- }
-
- public function getApplicationRoles()
- {
- return $this->role->getApplicationRoles();
- }
-
- public function getProjectRoles()
- {
- return $this->role->getProjectRoles();
- }
-}