Extracting mentions is badly broken right now but also not needed mostly, comment it out

This commit is contained in:
eyedeekay
2025-04-20 22:11:47 -04:00
parent 4900c0e04f
commit 815a83301a
2 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@
Go-based tool for migrating GitLab repositories, users, groups, issues and related data to Gitea instances.
More-or-less a port of [gitlab-to-gitea](https://git.autonomic.zone/kawaiipunk/gitlab-to-gitea) from python to Go because *fixing* python appears to be a thing I just can't get my mind around, but *rewriting* it? I'm actually OK at that.
## Core Functionality
- Migrates users, groups, and their relationships from GitLab to Gitea

View File

@ -250,7 +250,7 @@ func (m *Manager) collectRequiredUsers(projects []*gogitlab.Project) map[string]
}
// Extract mentioned users from issue description
for _, mention := range utils.ExtractUserMentions(issue.Description) {
/*for _, mention := range utils.ExtractUserMentions(issue.Description) {
addUser(mention)
}
@ -261,7 +261,7 @@ func (m *Manager) collectRequiredUsers(projects []*gogitlab.Project) map[string]
addUser(mention)
}
}
}
}*/
}
// Collect milestone authors