mirror of https://github.com/halo-dev/halo
Support blog logo and user avatar url.
parent
bdfe1b904b
commit
2ed74ef3e8
|
@ -48,7 +48,7 @@ public class MainController {
|
||||||
return HaloConst.HALO_VERSION;
|
return HaloConst.HALO_VERSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/user/avatar")
|
@GetMapping("/avatar")
|
||||||
public void avatar(HttpServletResponse response) throws IOException {
|
public void avatar(HttpServletResponse response) throws IOException {
|
||||||
User user = userService.getCurrentUser().orElseThrow(() -> new ServiceException("Can not find blog owner"));
|
User user = userService.getCurrentUser().orElseThrow(() -> new ServiceException("Can not find blog owner"));
|
||||||
if (StringUtils.isNotEmpty(user.getAvatar())) {
|
if (StringUtils.isNotEmpty(user.getAvatar())) {
|
||||||
|
@ -56,7 +56,7 @@ public class MainController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/blog/logo")
|
@GetMapping("/logo")
|
||||||
public void logo(HttpServletResponse response) throws IOException {
|
public void logo(HttpServletResponse response) throws IOException {
|
||||||
String blogLogo = optionService.getByProperty(BlogProperties.BLOG_LOGO).orElse("").toString();
|
String blogLogo = optionService.getByProperty(BlogProperties.BLOG_LOGO).orElse("").toString();
|
||||||
if(StringUtils.isNotEmpty(blogLogo)){
|
if(StringUtils.isNotEmpty(blogLogo)){
|
||||||
|
|
Loading…
Reference in New Issue