minor fix

This commit is contained in:
Tony Yang
2019-06-02 03:32:33 +08:00
parent 8199198816
commit 348170529a
2 changed files with 25 additions and 5 deletions

View File

@@ -84,6 +84,9 @@ router.on({
"/post/page/:page": function (params) {
render("post", "page", params.page);
},
"/post/user/:username": function (params) {
render("post", "user", params.username);
},
"/user": function () {
render("user", "list");
},