Skip to content

Commit cec58d9

Browse files
committed
Ops :P
1 parent 8ada756 commit cec58d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/github/throyer/common/springboot/controllers/app/AppController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ public class AppController {
1111

1212
@GetMapping
1313
public String index(Model model) {
14-
return "/app/index";
14+
return "app/index";
1515
}
1616
}

src/main/java/com/github/throyer/common/springboot/controllers/app/UserController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public String idnex(Model model, Pagination pagination, Sort sort, SearchUser se
2828

2929
model.addAttribute("page", page);
3030

31-
return "/app/users/index";
31+
return "app/users/index";
3232
}
3333
}

0 commit comments

Comments
 (0)