1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-29 02:46:47 +02:00
gitea/models/organization
Gusted 1b53a9e914
Don't return duplicated users who can create org repo (#22560)
- Currently the function `GetUsersWhoCanCreateOrgRepo` uses a query that
is able to have duplicated users in the result, this is can happen under
the condition that a user is in team that either is the owner team or
has permission to create organization repositories.
- Add test code to simulate the above condition for user 3,
[`TestGetUsersWhoCanCreateOrgRepo`](a1fcb1cfb8/models/organization/org_test.go (L435))
is the test function that tests for this.
- The fix is quite trivial use a map keyed by user id in order to drop
duplicates.

---------

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
2023-01-30 18:12:45 +08:00
..
main_test.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
mini_org.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
org.go Don't return duplicated users who can create org repo (#22560) 2023-01-30 18:12:45 +08:00
org_repo.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
org_test.go Don't return duplicated users who can create org repo (#22560) 2023-01-30 18:12:45 +08:00
org_user.go Rename almost all Ctx functions (#22071) 2022-12-10 10:46:31 +08:00
org_user_test.go refactor some functions to support ctx as first parameter (#21878) 2022-12-03 10:48:26 +08:00
team.go Support org/user level projects (#22235) 2023-01-20 19:42:33 +08:00
team_invite.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
team_invite_test.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
team_list.go Support org/user level projects (#22235) 2023-01-20 19:42:33 +08:00
team_repo.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
team_test.go refactor some functions to support ctx as first parameter (#21878) 2022-12-03 10:48:26 +08:00
team_unit.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
team_user.go Support org/user level projects (#22235) 2023-01-20 19:42:33 +08:00