Add GitLab Duo OAuth and PAT support

This commit is contained in:
LuxVTZ
2026-03-10 17:52:35 +04:00
parent 046865461e
commit bb28cd26ad
12 changed files with 2062 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ func init() {
registerRefreshLead("kimi", func() Authenticator { return NewKimiAuthenticator() })
registerRefreshLead("kiro", func() Authenticator { return NewKiroAuthenticator() })
registerRefreshLead("github-copilot", func() Authenticator { return NewGitHubCopilotAuthenticator() })
registerRefreshLead("gitlab", func() Authenticator { return NewGitLabAuthenticator() })
}
func registerRefreshLead(provider string, factory func() Authenticator) {