Testing api 1.10.0

This commit is contained in:
Admin
2016-06-07 16:39:59 -05:00
parent 9438b25538
commit a276f97776
3 changed files with 56 additions and 11 deletions

View File

@@ -97,5 +97,17 @@ public class UpnpSettingsResource {
return filledTemplate;
} );
// http://ip_adress:port/favicon.ico
get("/favicon.ico", "application/xml; charset=utf-8", (request, response) -> {
return "";
} );
// http://ip_adress:port/hue_logo_0.png
get("/hue_logo_0.png", "application/xml; charset=utf-8", (request, response) -> {
return "";
} );
// http://ip_adress:port/hue_logo_3.png
get("/hue_logo_3.png", "application/xml; charset=utf-8", (request, response) -> {
return "";
} );
}
}