feat: Add Feishu OAuth login & consumer-grade MCP

This commit is contained in:
lcx
2025-07-17 13:45:25 +08:00
parent 526dddb579
commit e485ae2511
@@ -94,9 +94,9 @@ const Auth = () => {
const { code, data, msg } = response
if (code === STATUS_CODE.SUCCESS) {
form.setFieldsValue({
clientId: data.info?.config?.clientId || '',
clientSecret: data.info?.config?.clientSecret || '',
enabled: data.info?.enable || false
clientId: data.driver?.config?.clientId || '',
clientSecret: data.driver?.config?.clientSecret || '',
enabled: data.driver?.enable || false
})
} else {
message.error(msg || $t(RESPONSE_TIPS.error))