[API] let admin check org membership on other users (#10201)

* fix

* fix lint on master

Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
6543 2020-02-09 22:54:53 +01:00 committed by GitHub
parent e414fc18a9
commit 585316f3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ func IsMember(ctx *context.APIContext) {
if err != nil {
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
return
} else if userIsMember {
} else if userIsMember || ctx.User.IsAdmin {
userToCheckIsMember, err := ctx.Org.Organization.IsOrgMember(userToCheck.ID)
if err != nil {
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)