fix #1643 and improve integration test (#1645)

This commit is contained in:
Lunny Xiao 2017-04-30 13:08:09 +08:00 committed by Bo-Yi Wu
parent 00324cea10
commit 0308d44a16
4 changed files with 36 additions and 10 deletions

View file

@ -55,6 +55,11 @@ func Search(ctx *context.APIContext) {
return
}
var userID int64
if ctx.IsSigned {
userID = ctx.User.ID
}
results := make([]*api.Repository, len(repos))
for i, repo := range repos {
if err = repo.GetOwner(); err != nil {
@ -64,7 +69,7 @@ func Search(ctx *context.APIContext) {
})
return
}
accessMode, err := models.AccessLevel(ctx.User.ID, repo)
accessMode, err := models.AccessLevel(userID, repo)
if err != nil {
ctx.JSON(500, map[string]interface{}{
"ok": false,