Rename all models

This commit is contained in:
Frederic Guillot
2016-05-28 19:48:22 -04:00
parent 936376ffe7
commit 14713b0ec7
411 changed files with 4145 additions and 4156 deletions

View File

@@ -14,7 +14,7 @@ class AppApi extends Base
{
public function getTimezone()
{
return $this->timezone->getCurrentTimezone();
return $this->timezoneModel->getCurrentTimezone();
}
public function getVersion()
@@ -24,17 +24,17 @@ class AppApi extends Base
public function getDefaultTaskColor()
{
return $this->color->getDefaultColor();
return $this->colorModel->getDefaultColor();
}
public function getDefaultTaskColors()
{
return $this->color->getDefaultColors();
return $this->colorModel->getDefaultColors();
}
public function getColorList()
{
return $this->color->getList();
return $this->colorModel->getList();
}
public function getApplicationRoles()