- 将 LinuxDo Connect 配置从环境变量迁移到数据库持久化 - 在管理后台系统设置中添加 LinuxDo OAuth 配置项 - 简化部署流程,无需修改 docker-compose.override.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
package service
|
|
|
|
type SystemSettings struct {
|
|
RegistrationEnabled bool
|
|
EmailVerifyEnabled bool
|
|
|
|
SMTPHost string
|
|
SMTPPort int
|
|
SMTPUsername string
|
|
SMTPPassword string
|
|
SMTPPasswordConfigured bool
|
|
SMTPFrom string
|
|
SMTPFromName string
|
|
SMTPUseTLS bool
|
|
|
|
TurnstileEnabled bool
|
|
TurnstileSiteKey string
|
|
TurnstileSecretKey string
|
|
TurnstileSecretKeyConfigured bool
|
|
|
|
// LinuxDo Connect OAuth login (end-user SSO)
|
|
LinuxDoConnectEnabled bool
|
|
LinuxDoConnectClientID string
|
|
LinuxDoConnectClientSecret string
|
|
LinuxDoConnectClientSecretConfigured bool
|
|
LinuxDoConnectRedirectURL string
|
|
|
|
SiteName string
|
|
SiteLogo string
|
|
SiteSubtitle string
|
|
APIBaseURL string
|
|
ContactInfo string
|
|
DocURL string
|
|
|
|
DefaultConcurrency int
|
|
DefaultBalance float64
|
|
|
|
// Model fallback configuration
|
|
EnableModelFallback bool `json:"enable_model_fallback"`
|
|
FallbackModelAnthropic string `json:"fallback_model_anthropic"`
|
|
FallbackModelOpenAI string `json:"fallback_model_openai"`
|
|
FallbackModelGemini string `json:"fallback_model_gemini"`
|
|
FallbackModelAntigravity string `json:"fallback_model_antigravity"`
|
|
|
|
// Identity patch configuration (Claude -> Gemini)
|
|
EnableIdentityPatch bool `json:"enable_identity_patch"`
|
|
IdentityPatchPrompt string `json:"identity_patch_prompt"`
|
|
}
|
|
|
|
type PublicSettings struct {
|
|
RegistrationEnabled bool
|
|
EmailVerifyEnabled bool
|
|
TurnstileEnabled bool
|
|
TurnstileSiteKey string
|
|
SiteName string
|
|
SiteLogo string
|
|
SiteSubtitle string
|
|
APIBaseURL string
|
|
ContactInfo string
|
|
DocURL string
|
|
LinuxDoOAuthEnabled bool
|
|
Version string
|
|
}
|