summaryrefslogtreecommitdiffstats
path: root/cmd/web.go
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-09-25 16:36:19 -0400
committerUnknwon <joe2010xtmf@163.com>2014-09-25 16:36:19 -0400
commitf69761563b7a4fe9ace2a1643391cbcf9b92b372 (patch)
tree23d5bf522788895c4659c55f1e8275d9b9ab9e0b /cmd/web.go
parent57d48fb6a2fb34f5da1aa702c33bc9c268e29f71 (diff)
downloadgitea-f69761563b7a4fe9ace2a1643391cbcf9b92b372.tar.gz
gitea-f69761563b7a4fe9ace2a1643391cbcf9b92b372.zip
Fix bug on transfer repo
Diffstat (limited to 'cmd/web.go')
-rw-r--r--cmd/web.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 2376fd2126..8a87f86bb1 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -190,7 +190,8 @@ func runWeb(*cli.Context) {
r.Get("/logout", user.SignOut)
})
- m.Get("/user/:username", ignSignIn, user.Profile) // TODO: Legacy
+ // FIXME: Legacy
+ m.Get("/user/:username", ignSignIn, user.Profile)
// Gravatar service.
avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")