浏览代码

Make /users/{username}/repos list private repos the current user has access to (#8621)

tags/v1.11.0-rc1
7FM 4 年前
父节点
当前提交
22272fe1e4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      routers/api/v1/user/repo.go

+ 1
- 1
routers/api/v1/user/repo.go 查看文件

@@ -52,7 +52,7 @@ func ListUserRepos(ctx *context.APIContext) {
if ctx.Written() {
return
}
private := ctx.IsSigned && (ctx.User.ID == user.ID || ctx.User.IsAdmin)
private := ctx.IsSigned
listUserRepos(ctx, user, private)
}


正在加载...
取消
保存