Added list of all tracks by one user

This commit is contained in:
2017-06-27 20:12:08 +02:00
parent 9ce39df2eb
commit c1765a23ea
4 changed files with 41 additions and 1 deletions

View File

@ -65,6 +65,7 @@ func configure(app *aero.Application) *aero.Application {
app.Ajax("/user/:nick", profile.Get)
app.Ajax("/user/:nick/threads", profile.GetThreadsByUser)
app.Ajax("/user/:nick/posts", profile.GetPostsByUser)
app.Ajax("/user/:nick/tracks", profile.GetSoundTracksByUser)
app.Ajax("/user/:nick/animelist", animelist.Get)
app.Ajax("/user/:nick/animelist/:id", animelistitem.Get)
app.Ajax("/new/thread", newthread.Get)