Posts and threads as sub-pages of forum on user profiles

This commit is contained in:
2017-11-17 11:00:49 +01:00
parent 3dc9a2e7bf
commit 900148b788
5 changed files with 18 additions and 8 deletions

View File

@ -115,8 +115,8 @@ func Configure(app *aero.Application) {
// User profiles
l.Page("/user", user.Get)
l.Page("/user/:nick", profile.Get)
l.Page("/user/:nick/threads", profile.GetThreadsByUser)
l.Page("/user/:nick/posts", profile.GetPostsByUser)
l.Page("/user/:nick/forum/threads", profile.GetThreadsByUser)
l.Page("/user/:nick/forum/posts", profile.GetPostsByUser)
l.Page("/user/:nick/soundtracks", profile.GetSoundTracksByUser)
l.Page("/user/:nick/stats", profile.GetStatsByUser)
l.Page("/user/:nick/followers", profile.GetFollowers)