From b1e2ca00ce7375ffcbe5e927135c8892036e6bd6 Mon Sep 17 00:00:00 2001 From: Frederic Guillot <fred@kanboard.net> Date: Mon, 16 May 2016 21:07:29 -0400 Subject: Rename Api classes --- app/Api/App.php | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 app/Api/App.php (limited to 'app/Api/App.php') 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(); - } -} -- cgit v1.2.3