diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:11:51 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:11:51 -0500 |
commit | 84b0f0df90442775b9122457648f06c9485df1f1 (patch) | |
tree | 5f0fb91ed9280bbf10bb60d69f3523cafc928f5c /app/Controller/App.php | |
parent | 4b45b2aa3533309898670f1b13756dfdfce355a7 (diff) |
Add project calendars (merge/refactoring of #490)
Diffstat (limited to 'app/Controller/App.php')
-rw-r--r-- | app/Controller/App.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Controller/App.php b/app/Controller/App.php index aa2673a1..80d4f275 100644 --- a/app/Controller/App.php +++ b/app/Controller/App.php @@ -196,4 +196,14 @@ class App extends Base ); } } + + /** + * Colors stylesheet + * + * @access public + */ + public function colors() + { + $this->response->css($this->color->getCss()); + } } |