mirror of
https://github.com/go-i2p/gitlab-to-gitea.git
synced 2025-06-08 10:32:04 -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.
|
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
|
## Core Functionality
|
||||||
|
|
||||||
- Migrates users, groups, and their relationships from GitLab to Gitea
|
- 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
|
// Extract mentioned users from issue description
|
||||||
for _, mention := range utils.ExtractUserMentions(issue.Description) {
|
/*for _, mention := range utils.ExtractUserMentions(issue.Description) {
|
||||||
addUser(mention)
|
addUser(mention)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -261,7 +261,7 @@ func (m *Manager) collectRequiredUsers(projects []*gogitlab.Project) map[string]
|
|||||||
addUser(mention)
|
addUser(mention)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collect milestone authors
|
// Collect milestone authors
|
||||||
|
Reference in New Issue
Block a user