summaryrefslogtreecommitdiff
path: root/app/Api/App.php
diff options
context:
space:
mode:
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();
- }
-}