aboutsummaryrefslogtreecommitdiffstats
path: root/models/repo_permission.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-04-07 23:52:01 +0200
committerGitHub <noreply@github.com>2020-04-07 22:52:01 +0100
commit71979d9663d8e43b772c37f2a79af5b8911df661 (patch)
treebfdd683d60759f9f274144fea1265537d1ea396c /models/repo_permission.go
parentd00ebf445bac3ee70616032e3fc89781cac3000c (diff)
downloadgitea-71979d9663d8e43b772c37f2a79af5b8911df661.tar.gz
gitea-71979d9663d8e43b772c37f2a79af5b8911df661.zip
Automatically remove Watches, Assignments, etc if user loses access due to being removed as collaborator or from a team (#10997)
* remove a user from being assigned to any issue/PR if (s)he is removed as a collaborator * fix gender specific comment * do not remove users that still have access to the repo if they are a member of a team that can access the repo * add context to errors * updates * incorporate review fixes * Update models/repo_collaboration.go Co-Authored-By: 6543 <6543@obermui.de> * Update models/repo_collaboration.go Co-Authored-By: 6543 <6543@obermui.de> * Fix Rebase Relict * Fix & Impruve * use xorm builder * all in one session * generalize reconsiderIssueAssignees * Only Unwatch if have no access anymore * prepare for reuse * Same things if remove User from Team * fix lint * let mysql take time to react * add description * CI.restart() * CI.restart() Co-authored-by: Lanre Adelowo <yo@lanre.wtf> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'models/repo_permission.go')
-rw-r--r--models/repo_permission.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/models/repo_permission.go b/models/repo_permission.go
index 0b3e5b341a..2061f9770d 100644
--- a/models/repo_permission.go
+++ b/models/repo_permission.go
@@ -339,10 +339,14 @@ func HasAccessUnit(user *User, repo *Repository, unitType UnitType, testMode Acc
// Currently any write access (code, issues or pr's) is assignable, to match assignee list in user interface.
// FIXME: user could send PullRequest also could be assigned???
func CanBeAssigned(user *User, repo *Repository, isPull bool) (bool, error) {
+ return canBeAssigned(x, user, repo, isPull)
+}
+
+func canBeAssigned(e Engine, user *User, repo *Repository, _ bool) (bool, error) {
if user.IsOrganization() {
return false, fmt.Errorf("Organization can't be added as assignee [user_id: %d, repo_id: %d]", user.ID, repo.ID)
}
- perm, err := GetUserRepoPermission(repo, user)
+ perm, err := getUserRepoPermission(e, repo, user)
if err != nil {
return false, err
}