This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
forgejo/models
Lunny Xiao bc4cce138a
Fix delete user missed some comments (#21067)
There is a mistake in the batched delete comments part of DeleteUser which causes some comments to not be deleted

The code incorrectly updates the `start` of the limit clause resulting in most comments not being deleted.

```go
			if err = e.Where("type=? AND poster_id=?", issues_model.CommentTypeComment, u.ID).Limit(batchSize, start).Find(&comments); err != nil {
```

should be:

```go
			if err = e.Where("type=? AND poster_id=?", issues_model.CommentTypeComment, u.ID).Limit(batchSize, 0).Find(&comments); err != nil {
```

Co-authored-by: zeripath <art27@cantab.net>
2022-09-05 19:41:16 +03:00
..
activities Add more checks in migration code (#21011) 2022-09-04 13:47:56 +03:00
admin Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
appstate
asymkey Increase Content field size of gpg_key and public_key to MEDIUMTEXT (#20896) 2022-08-22 14:32:28 +01:00
auth Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
avatars
db test: use T.TempDir to create temporary test directory (#21043) 2022-09-04 16:14:53 +01:00
fixtures Fix SQL Query for SearchTeam (#20844) 2022-08-21 17:24:05 +01:00
foreignreference
git Add migrate repo archiver and packages storage support on command line (#20757) 2022-08-16 12:05:15 +08:00
issues Fix missed sort bug (#20996) 2022-08-31 14:15:12 -04:00
migrations Add another index for Action table on postgres (#21033) 2022-09-03 17:27:59 +01:00
organization Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
packages Delete unreferenced packages when deleting a package version (#20977) 2022-09-03 17:01:00 +01:00
perm Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
project
pull
repo fix hard-coded timeout and error panic in API archive download endpoint (#20925) 2022-08-29 11:45:20 +02:00
unit
unittest Kd/ci playwright go test (#20123) 2022-09-02 15:18:23 -04:00
user Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
webhook Webhook for Wiki changes (#20219) 2022-09-04 20:54:23 +01:00
error.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
fixture_generation.go
fixture_test.go
main_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
migrate.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
migrate_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org_team.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org_team_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org_test.go Refactor AssertExistsAndLoadBean to use generics (#20797) 2022-08-16 10:22:25 +08:00
repo.go fix hard-coded timeout and error panic in API archive download endpoint (#20925) 2022-08-29 11:45:20 +02:00
repo_collaboration.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo_collaboration_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo_test.go
repo_transfer.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo_transfer_test.go Refactor AssertExistsAndLoadBean to use generics (#20797) 2022-08-16 10:22:25 +08:00
user.go Fix delete user missed some comments (#21067) 2022-09-05 19:41:16 +03:00