summaryrefslogtreecommitdiff
path: root/app/Api/AppApi.php
blob: 637de5c572d4276c8914bfbe2e7b6a0667f47ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

namespace Kanboard\Api;

use Kanboard\Core\Base;

/**
 * App API controller
 *
 * @package  Kanboard\Api
 * @author   Frederic Guillot
 */
class AppApi extends Base
{
    public function getTimezone()
    {
        return $this->timezoneModel->getCurrentTimezone();
    }

    public function getVersion()
    {
        return APP_VERSION;
    }

    public function getDefaultTaskColor()
    {
        return $this->colorModel->getDefaultColor();
    }

    public function getDefaultTaskColors()
    {
        return $this->colorModel->getDefaultColors();
    }

    public function getColorList()
    {
        return $this->colorModel->getList();
    }

    public function getApplicationRoles()
    {
        return $this->role->getApplicationRoles();
    }

    public function getProjectRoles()
    {
        return $this->role->getProjectRoles();
    }
}