解决了以下文件的冲突: - backend/internal/handler/admin/setting_handler.go - 采用 upstream 的字段对齐风格和 *Configured 字段名 - 添加 EnableIdentityPatch 和 IdentityPatchPrompt 字段 - backend/internal/handler/gateway_handler.go - 采用 upstream 的 billingErrorDetails 错误处理方式 - frontend/src/api/admin/settings.ts - 采用 upstream 的 *_configured 字段名 - 添加 enable_identity_patch 和 identity_patch_prompt 字段 - frontend/src/views/admin/SettingsView.vue - 合并 turnstile_secret_key_configured 字段 - 保留 enable_identity_patch 和 identity_patch_prompt 字段
56 lines
1.5 KiB
Go
56 lines
1.5 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
|
|
|
|
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
|
|
Version string
|
|
}
|