mirror of
https://github.com/go-gitea/gitea
synced 2024-11-18 22:19:25 +01:00
On Repo Deletion: Delete related TrackedTimes too (#11110)
This commit is contained in:
parent
5180deb819
commit
4be7cf0405
@ -1614,6 +1614,11 @@ func DeleteRepository(doer *User, uid, repoID int64) error {
|
||||
return err
|
||||
}
|
||||
|
||||
if _, err = sess.In("issue_id", deleteCond).
|
||||
Delete(&TrackedTime{}); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
attachments = attachments[:0]
|
||||
if err = sess.Join("INNER", "issue", "issue.id = attachment.issue_id").
|
||||
Where("issue.repo_id = ?", repoID).
|
||||
|
Loading…
Reference in New Issue
Block a user