feat: michat去除group agent功能
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 55s
Egg Server CI/CD / refresh-image (push) Successful in 13s
Egg Server CI/CD / fast-deploy (push) Successful in 3s

This commit is contained in:
zhaoyingbo 2024-10-30 11:39:17 +00:00
parent 69254635c8
commit 179d3701fc

View File

@ -121,6 +121,7 @@ const manageCMDMsg = (ctx: Context.Data) => {
larkBody: { msgText, chatId },
} = ctx
logger.info(`bot req text: ${msgText}`)
// 处理命令消息
if (msgText.trim() === "/id") {
logger.info(`bot command is /id, chatId: ${chatId}`)
@ -128,13 +129,6 @@ const manageCMDMsg = (ctx: Context.Data) => {
return
}
// 选择群组信息
if (msgText.trim().startsWith("/g")) {
logger.info(`bot command is /groupchat, chatId: ${chatId}`)
groupAgent(ctx)
return
}
// michat专属功能
if (app === "michat") {
// 帮助
@ -172,6 +166,13 @@ const manageCMDMsg = (ctx: Context.Data) => {
return
}
// 选择群组信息
if (msgText.trim().startsWith("/g")) {
logger.info(`bot command is /groupchat, chatId: ${chatId}`)
groupAgent(ctx)
return
}
// 帮助
if (msgText.trim() === "/help") {
logger.info(`bot command is /help, chatId: ${chatId}`)