fix leave team 404 (#1154)

This commit is contained in:
Lunny Xiao 2017-03-09 19:18:49 +08:00 committed by GitHub
parent d2b2881306
commit b40496533b
2 changed files with 3 additions and 1 deletions

View file

@ -108,6 +108,8 @@ func TeamsAction(ctx *context.Context) {
switch page {
case "team":
ctx.Redirect(ctx.Org.OrgLink + "/teams/" + ctx.Org.Team.LowerName)
case "home":
ctx.Redirect(ctx.Org.Organization.HomeLink())
default:
ctx.Redirect(ctx.Org.OrgLink + "/teams")
}