Hide limited users if viewed by anonymous ghost (#25214)

The ghost user leads to inclusion of limited users/orgs in
`BuildCanSeeUserCondition`.
pull/25184/head^2
KN4CK3R 1 year ago committed by GitHub
parent 139704f499
commit 2126f712bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      models/packages/container/search.go

@ -262,6 +262,10 @@ func GetRepositories(ctx context.Context, actor *user_model.User, n int, last st
cond = cond.And(builder.Gt{"package_property.value": strings.ToLower(last)})
}
if actor.IsGhost() {
actor = nil
}
cond = cond.And(user_model.BuildCanSeeUserCondition(actor))
sess := db.GetEngine(ctx).

Loading…
Cancel
Save