remove player avatar example
Some checks failed
deploy / deploy (push) Failing after 15s

This commit is contained in:
Lee
2024-04-08 04:54:43 +01:00
parent 2dd055d156
commit d4a4884b8f
3 changed files with 5 additions and 5 deletions

View File

@ -17,8 +17,7 @@ public class HomeController {
@RequestMapping(value = "/")
public String home(Model model) {
model.addAttribute("url", Config.INSTANCE.getWebPublicUrl() + "/player/" + exampleUuid);
model.addAttribute("avatar_url", Config.INSTANCE.getWebPublicUrl() + "/player/avatar/" + exampleUuid);
model.addAttribute("player_example_url", Config.INSTANCE.getWebPublicUrl() + "/player/" + exampleUuid);
return "index";
}
}