summaryrefslogtreecommitdiffstats
path: root/models/repo_collaboration.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2022-05-20 22:08:52 +0800
committerGitHub <noreply@github.com>2022-05-20 22:08:52 +0800
commitfd7d83ace60258acf7139c4c787aa8af75b7ba8c (patch)
tree50038348ec10485f72344f3ac80324e04abc1283 /models/repo_collaboration.go
parentd81e31ad7826a81fc7139f329f250594610a274b (diff)
downloadgitea-fd7d83ace60258acf7139c4c787aa8af75b7ba8c.tar.gz
gitea-fd7d83ace60258acf7139c4c787aa8af75b7ba8c.zip
Move almost all functions' parameter db.Engine to context.Context (#19748)
* Move almost all functions' parameter db.Engine to context.Context * remove some unnecessary wrap functions
Diffstat (limited to 'models/repo_collaboration.go')
-rw-r--r--models/repo_collaboration.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/models/repo_collaboration.go b/models/repo_collaboration.go
index 2069ce8cc3..e20e96815c 100644
--- a/models/repo_collaboration.go
+++ b/models/repo_collaboration.go
@@ -76,7 +76,7 @@ func DeleteCollaboration(repo *repo_model.Repository, uid int64) (err error) {
return err
}
- if err = repo_model.WatchRepoCtx(ctx, uid, repo.ID, false); err != nil {
+ if err = repo_model.WatchRepo(ctx, uid, repo.ID, false); err != nil {
return err
}
@@ -93,7 +93,7 @@ func DeleteCollaboration(repo *repo_model.Repository, uid int64) (err error) {
}
func reconsiderRepoIssuesAssignee(ctx context.Context, repo *repo_model.Repository, uid int64) error {
- user, err := user_model.GetUserByIDEngine(db.GetEngine(ctx), uid)
+ user, err := user_model.GetUserByIDCtx(ctx, uid)
if err != nil {
return err
}
@@ -114,12 +114,12 @@ func reconsiderWatches(ctx context.Context, repo *repo_model.Repository, uid int
if has, err := access_model.HasAccess(ctx, uid, repo); err != nil || has {
return err
}
- if err := repo_model.WatchRepoCtx(ctx, uid, repo.ID, false); err != nil {
+ if err := repo_model.WatchRepo(ctx, uid, repo.ID, false); err != nil {
return err
}
// Remove all IssueWatches a user has subscribed to in the repository
- return removeIssueWatchersByRepoID(db.GetEngine(ctx), uid, repo.ID)
+ return removeIssueWatchersByRepoID(ctx, uid, repo.ID)
}
// IsOwnerMemberCollaborator checks if a provided user is the owner, a collaborator or a member of a team in a repository