|
|
@ -733,12 +733,13 @@ func GetFeeds(opts GetFeedsOptions) ([]*Action, error) { |
|
|
|
cond = cond.And(builder.In("repo_id", repoIDs)) |
|
|
|
cond = cond.And(builder.In("repo_id", repoIDs)) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var userIDCond builder.Cond = builder.Eq{"user_id": opts.RequestedUser.ID} |
|
|
|
if opts.Collaborate { |
|
|
|
if opts.Collaborate { |
|
|
|
cond = builder.Eq{"user_id": opts.RequestedUser.ID}.Or( |
|
|
|
userIDCond = userIDCond.Or(builder.Expr( |
|
|
|
builder.Expr(`repo_id IN (SELECT repo_id FROM "access" WHERE access.user_id = ?)`, opts.RequestedUser.ID)) |
|
|
|
`repo_id IN (SELECT repo_id FROM "access" WHERE access.user_id = ?)`, |
|
|
|
} else { |
|
|
|
opts.RequestedUser.ID)) |
|
|
|
cond = builder.Eq{"user_id": opts.RequestedUser.ID} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
cond = cond.And(userIDCond) |
|
|
|
|
|
|
|
|
|
|
|
if opts.OnlyPerformedBy { |
|
|
|
if opts.OnlyPerformedBy { |
|
|
|
cond = cond.And(builder.Eq{"act_user_id": opts.RequestedUser.ID}) |
|
|
|
cond = cond.And(builder.Eq{"act_user_id": opts.RequestedUser.ID}) |
|
|
|