feat: Implement Codex proxy configuration page with CRUD and testing capabilities, supported by new backend API and services for error handling, team processing, mail, and ChatGPT registration.

This commit is contained in:
2026-02-03 04:33:37 +08:00
parent f867e20c0e
commit 637753ddaa
5 changed files with 248 additions and 216 deletions

View File

@@ -383,7 +383,7 @@ func (m *Client) WaitForCode(email string, timeout time.Duration) (string, error
}
}
}
time.Sleep(2 * time.Second)
time.Sleep(1 * time.Second)
}
return "", fmt.Errorf("验证码获取超时")
@@ -414,7 +414,7 @@ func (m *Client) WaitForInviteLink(email string, timeout time.Duration) (string,
}
}
}
time.Sleep(2 * time.Second)
time.Sleep(1 * time.Second)
}
return "", fmt.Errorf("等待邀请邮件超时")