From 6f00e70ecc3a707954e8888810bca34d114758bc Mon Sep 17 00:00:00 2001 From: Udo Walter Date: Sat, 8 Aug 2020 02:16:14 +0200 Subject: Some UI changes: - add double click to select location and continue - add a preselected location (first one in the list without a password) - add logo above the location selection - remove redundant text at the bottom - the logo is now customizable via the guacamole.properties file (property name: slx-logo-url) --- src/main/java/de/bwlehrpool/bwlp_guac/BwlpREST.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main/java/de/bwlehrpool/bwlp_guac/BwlpREST.java (limited to 'src/main/java/de/bwlehrpool/bwlp_guac/BwlpREST.java') diff --git a/src/main/java/de/bwlehrpool/bwlp_guac/BwlpREST.java b/src/main/java/de/bwlehrpool/bwlp_guac/BwlpREST.java new file mode 100644 index 0000000..65258f7 --- /dev/null +++ b/src/main/java/de/bwlehrpool/bwlp_guac/BwlpREST.java @@ -0,0 +1,17 @@ +package de.bwlehrpool.bwlp_guac; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +public class BwlpREST { + + @GET + @Path("logoUrl") + @Produces(MediaType.TEXT_PLAIN) + public String getLogoUrl() { + return SlxConfig.logoUrl(); + } + +} \ No newline at end of file -- cgit v1.2.3-55-g7522