mirror of
https://github.com/go-i2p/gitlab-to-gitea.git
synced 2025-06-08 02:29:16 -04:00
Extracting mentions is badly broken right now but also not needed mostly, comment it out
This commit is contained in:
@ -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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user