General improvements

This commit is contained in:
2017-06-20 14:16:23 +02:00
parent 009c73629f
commit 877b2433e4
11 changed files with 68 additions and 9 deletions

View File

@ -10,6 +10,14 @@ func init() {
"/+Akyoto/threads",
})
app.Test("/user/:nick/animelist", []string{
"/+Akyoto/animelist",
})
app.Test("/user/:nick/animelist/:id", []string{
"/+Akyoto/animelist/7929",
})
// Pages
app.Test("/anime/:id", []string{
"/anime/1",
@ -92,4 +100,5 @@ func init() {
// Disable
app.Test("/auth/google", nil)
app.Test("/auth/google/callback", nil)
app.Test("/user", nil)
}