Better applink icon support

This commit is contained in:
Johannes Zellner
2022-07-07 14:11:14 +02:00
parent 741c21b368
commit f43fd21929
3 changed files with 28 additions and 5 deletions

View File

@@ -263,6 +263,7 @@ function initializeExpressSync() {
router.get ('/api/v1/applinks/:id', token, authorizeAdmin, routes.applinks.get);
router.post('/api/v1/applinks/:id', json, token, authorizeAdmin, routes.applinks.update);
router.del ('/api/v1/applinks/:id', token, authorizeAdmin, routes.applinks.remove);
router.get ('/api/v1/applinks/:id/icon', token, routes.applinks.getIcon);
// branding routes
router.get ('/api/v1/branding/:setting', token, authorizeOwner, routes.branding.get);