diff options
author | Julius Härtl <jus@bitgrid.net> | 2017-09-11 15:04:26 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-09-12 09:23:12 +0200 |
commit | 770aae42f6c57e3a273c7b09a91d43a366175234 (patch) | |
tree | d11c4f5e63d7f692e1d1be7fe156a134ca2a2450 /apps/theming/appinfo/routes.php | |
parent | b49ab065b783b3ec041ca395739d747d20e2e187 (diff) | |
download | nextcloud-server-770aae42f6c57e3a273c7b09a91d43a366175234.tar.gz nextcloud-server-770aae42f6c57e3a273c7b09a91d43a366175234.zip |
Add themed manifest.json to theming app
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/appinfo/routes.php')
-rw-r--r-- | apps/theming/appinfo/routes.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/theming/appinfo/routes.php b/apps/theming/appinfo/routes.php index f4aa2f93162..530e13f53d4 100644 --- a/apps/theming/appinfo/routes.php +++ b/apps/theming/appinfo/routes.php @@ -61,6 +61,12 @@ return ['routes' => [ 'verb' => 'GET', ], [ + 'name' => 'Theming#getManifest', + 'url' => '/manifest/{app}', + 'verb' => 'GET', + 'defaults' => array('app' => 'core') + ], + [ 'name' => 'Icon#getFavicon', 'url' => '/favicon/{app}', 'verb' => 'GET', |