diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-05-26 21:12:02 +0800 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-05-26 08:12:02 -0500 |
commit | 3611a3e5529329c9ab1a137c0930199959a40e71 (patch) | |
tree | f5e900f9eb0a98e38f146d98105ef34c0844f307 /routers/org/teams.go | |
parent | 39348cd27e4114c24234a65c542992273ec8b2b8 (diff) | |
download | gitea-3611a3e5529329c9ab1a137c0930199959a40e71.tar.gz gitea-3611a3e5529329c9ab1a137c0930199959a40e71.zip |
fix bug to deny to add orgnization as a member of an orgnization or team (#1815)
Diffstat (limited to 'routers/org/teams.go')
-rw-r--r-- | routers/org/teams.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/routers/org/teams.go b/routers/org/teams.go index 914561b52a..10c86bd5cf 100644 --- a/routers/org/teams.go +++ b/routers/org/teams.go @@ -88,6 +88,12 @@ func TeamsAction(ctx *context.Context) { return } + if u.IsOrganization() { + ctx.Flash.Error(ctx.Tr("form.cannot_add_org_to_team")) + ctx.Redirect(ctx.Org.OrgLink + "/teams/" + ctx.Org.Team.LowerName) + return + } + err = ctx.Org.Team.AddMember(u.ID) page = "team" } |