Browse Source

fix user's actions on domain/org/name-of-organization/dashboard

pull/474/head
tobyzxj 10 years ago
parent
commit
ad041167f7
  1. 2
      routers/user/home.go

2
routers/user/home.go

@ -94,7 +94,7 @@ func Dashboard(ctx *middleware.Context) {
feeds := make([]*models.Action, 0, len(actions)) feeds := make([]*models.Action, 0, len(actions))
for _, act := range actions { for _, act := range actions {
if act.IsPrivate { if act.IsPrivate {
if has, _ := models.HasAccess(ctxUser.Name, act.RepoUserName+"/"+act.RepoName, if has, _ := models.HasAccess(ctx.User.Name, act.RepoUserName+"/"+act.RepoName,
models.READABLE); !has { models.READABLE); !has {
continue continue
} }

Loading…
Cancel
Save