diff options
author | Julius Haertl <jus@bitgrid.net> | 2016-08-14 12:24:51 +0200 |
---|---|---|
committer | Julius Haertl <jus@bitgrid.net> | 2016-11-18 10:23:22 +0100 |
commit | 2d65b8c600580cd64aa599a791a467101b873c5a (patch) | |
tree | ea138f9e88072bb220ef352f3c911264510692cd /apps/theming/appinfo | |
parent | da6285b84f175640622a020f2d9258cee86a3c14 (diff) | |
download | nextcloud-server-2d65b8c600580cd64aa599a791a467101b873c5a.tar.gz nextcloud-server-2d65b8c600580cd64aa599a791a467101b873c5a.zip |
Theming: Add favicon-touch and fix icon creation with non svg images
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/appinfo')
-rw-r--r-- | apps/theming/appinfo/routes.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/theming/appinfo/routes.php b/apps/theming/appinfo/routes.php index 1894d810287..a6511668d14 100644 --- a/apps/theming/appinfo/routes.php +++ b/apps/theming/appinfo/routes.php @@ -67,8 +67,14 @@ return ['routes' => [ 'defaults' => array("app" => "core"), ], [ + 'name' => 'Icon#getTouchIcon', + 'url' => '/icon/{app}', + 'verb' => 'GET', + 'defaults' => array("app" => "core"), + ], + [ 'name' => 'Icon#getThemedIcon', - 'url' => '/image/{app}/{image}', + 'url' => '/img/{app}/{image}', 'verb' => 'GET', 'defaults' => array("app" => "core"), 'requirements' => array('image' => '.+') |