0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-15 15:03:32 +02:00

fix: backend-check lint errors

This commit is contained in:
beardev-in 2026-05-03 17:49:04 +05:30
parent 555bec4778
commit 56461206f5
No known key found for this signature in database
GPG Key ID: 625E0CB70AFF32B9

View File

@ -95,6 +95,7 @@ func DeleteAllProjectIssueByIssueIDsAndProjectIDs(ctx context.Context, issueIDs,
_, err := db.GetEngine(ctx).In("project_id", projectIDs).In("issue_id", issueIDs).Delete(&ProjectIssue{})
return err
}
// MoveIssueToColumn moves a single issue to a specific column within a project.
func MoveIssueToColumn(ctx context.Context, issueID, projectID, columnID int64) error {
nextSorting, err := GetColumnIssueNextSorting(ctx, projectID, columnID)