@ -103,7 +103,12 @@ 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 ( ctx . User , & models . Repository { Id : act . RepoId , IsPrivate : true } , models . ACCESS_MODE_READ ) ; ! has {
repo := & models . Repository { Id : act . RepoId , IsPrivate : true }
// This prevents having to retrieve the repository for each action
if act . RepoUserName == ctx . User . LowerName {
repo . OwnerId = ctx . User . Id
}
if has , _ := models . HasAccess ( ctx . User , repo , models . ACCESS_MODE_READ ) ; ! has {
continue
continue
}
}
}
}
@ -210,11 +215,12 @@ func Profile(ctx *middleware.Context) {
if ! ctx . IsSigned {
if ! ctx . IsSigned {
continue
continue
}
}
if has , _ := models . HasAccess ( ctx . User ,
repo := & models . Repository { Id : act . RepoId , IsPrivate : true }
& models . Repository {
// This prevents having to retrieve the repository for each action
Id : act . RepoId ,
if act . RepoUserName == ctx . User . LowerName {
IsPrivate : true ,
repo . OwnerId = ctx . User . Id
} , models . ACCESS_MODE_READ ) ; ! has {
}
if has , _ := models . HasAccess ( ctx . User , repo , models . ACCESS_MODE_READ ) ; ! has {
continue
continue
}
}
}
}