diff options
author | Vitaly Takmazov | 2024-02-19 15:58:37 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-02-19 15:58:37 +0300 |
commit | a5ff7b6b96c6ce40c87d48bc2a92fb893a3de52d (patch) | |
tree | 5c07dddd9185732e5691f677d341f573956803da /src/main/java | |
parent | 2feb692a62d559dec0a116726a05eb04bbd7dddc (diff) |
Revert "site: use base url in page layout"
This reverts commit aee5780150a7347838e113b17312f3636c2701f2.
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/juick/www/WebApp.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/java/com/juick/www/WebApp.java b/src/main/java/com/juick/www/WebApp.java index 74e0d822..a7c5eb8b 100644 --- a/src/main/java/com/juick/www/WebApp.java +++ b/src/main/java/com/juick/www/WebApp.java @@ -42,8 +42,6 @@ import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import org.springframework.web.servlet.resource.ResourceUrlProvider; -import org.springframework.web.servlet.support.ServletUriComponentsBuilder; -import org.springframework.web.util.UriComponents; import org.springframework.web.util.UriComponentsBuilder; /** @@ -60,8 +58,6 @@ public class WebApp { private PebbleEngine pebbleEngine; @Value("${img_url:http://localhost:8080/i/}") private String baseImagesUri; - @Value("${web_domain:localhost}") - private String webDomain; UriComponentsBuilder avatarBuilder; @PostConstruct @@ -110,11 +106,6 @@ public class WebApp { return avatarBuilder.build().toUriString(); } - public String getBaseUrl() { - UriComponents builder = ServletUriComponentsBuilder.fromCurrentRequest().replacePath("/").replaceQuery("").build(); - return builder.toUriString(); - } - public Optional<String> renderPlaintext(String body, String messageUrl) { PebbleTemplate noteTemplate = pebbleEngine.getTemplate("email/plaintext"); Map<String, Object> context = new HashMap<>(); |