Skip to content

Commit a5734d5

Browse files
author
haoxiuwen
committed
Add Callback to Product Introduction Sidebar
1 parent 44340a4 commit a5734d5

33 files changed

+239
-4
lines changed

docs/.vuepress/sidebar/index.ts

Lines changed: 47 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,53 @@ export const zhSidebar = sidebar({
180180
text: "回调",
181181
collapsible: true,
182182
children: [
183-
{ text: "回调概述", link: "/document/server-side/callback_overview.html" },
184-
{ text: "发送前回调", link: "/document/server-side/callback_presending.html" },
185-
{ text: "发送后回调", link: "/document/server-side/callback_postsending.html" },
186-
{ text: "发送后回调事件", link: "/document/server-side/callback_login_logout.html" },
183+
{ text: "回调概述", link: "callback/callback_overview.html" },
184+
{ text: "发送前回调", link: "callback/callback_presending.html" },
185+
{ text: "发送后回调", link: "callback/callback_postsending.html" },
186+
{ text: '发送后回调事件',
187+
collapsible: true,
188+
children: [
189+
{ text: '用户登入/登出', link: 'callback/callback_login_logout.html' },
190+
{ text: '发送消息', link: 'callback/callback_message_send.html' },
191+
{ text: '发送单聊消息已读回执', link: 'callback/callback_single_read_ack.html' },
192+
{ text: '发送群聊消息已读回执', link: 'callback/callback_group_read_ack.html' },
193+
{ text: '发送会话已读回执', link: 'callback/callback_single_conversation_ack.html' },
194+
{ text: '修改消息', link: 'callback/callback_message_modify.html' },
195+
{ text: '撤回消息', link: 'callback/callback_message_recall.html' },
196+
{ text: '群组/聊天室操作(新)',
197+
collapsible: true,
198+
children: [
199+
{ text: '创建群组/聊天室', link: 'callback/callback_group_room_create.html' },
200+
{ text: '更新群组/聊天室',
201+
collapsible: true,
202+
children: [
203+
{ text: '更新群组_聊天室信息', link: 'callback/callback_group_room_info.html' },
204+
{ text: '变更群主/聊天室所有者', link: 'callback/callback_group_room_owner.html' },
205+
{ text: '设置/更新公告', link: 'callback/callback_group_room_announcement.html' },
206+
{ text: '封禁/解禁群组', link: 'callback/callback_group_ban.html' },
207+
{ text: '全员禁言', link: 'callback/callback_group_room_muteall.html' }
208+
]
209+
},
210+
{ text: '删除群组/聊天室', link: 'callback/callback_group_room_delete.html' },
211+
{ text: '屏蔽/解除屏蔽群组', link: 'callback/callback_group_block.html' },
212+
{ text: '上传/删除群共享文件', link: 'callback/callback_group_shared_file.html' },
213+
{ text: '用户加入', link: 'callback/callback_group_room_join.html' },
214+
{ text: '成员离开', link: 'callback/callback_group_room_leave.html' },
215+
{ text: '添加/移除管理员', link: 'callback/callback_group_room_admin.html' },
216+
{ text: '加入/移出禁言列表', link: 'callback/callback_group_room_mute.html' },
217+
{ text: '添加/移出白名单', link: 'callback/callback_group_room_allowlist.html' },
218+
{ text: '加入/移出黑名单', link: 'callback/callback_group_room_blocklist.html' },
219+
{ text: '添加/移除聊天室超级管理员', link: 'callback/callback_room_superadmin.html' }
220+
]
221+
},
222+
{ text: '群组/聊天室操作(旧)', link: 'callback/callback_group_room_old.html' },
223+
{ text: '用户关系操作', link: 'callback/callback_contact.html' },
224+
{ text: '离线推送', link: 'callback/callback_offline_push.html' },
225+
{ text: 'Reaction', link: 'callback/callback_reaction.html' },
226+
{ text: 'Thread', link: 'callback/callback_thread.html' },
227+
{ text: '敏感词监测', link: 'callback/callback_sensitive_word.html' }
228+
]
229+
}
187230
],
188231
},
189232
{ text: "质量监控", link: "/product/request_quality_overview.html" },
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_contact.html",
4+
title: "好友关系操作"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_ban.html",
4+
title: "群组封禁/解禁事件"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_block.html",
4+
title: "屏蔽/解除屏蔽群组事件"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_read_ack.html",
4+
title: "发送群组消息已读回执"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_room_admin.html",
4+
title: "添加/删除群组/聊天室管理员事件"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_room_allowlist.html",
4+
title: "将群组/聊天室成员加入或移出白名单的事件"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_room_announcement.html",
4+
title: "群组/聊天室公告事件"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_room_blocklist.html",
4+
title: "将群组/聊天室成员加入/移出黑名单事件"
5+
}
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
{
3+
pageUri: "/document/server-side/callback_group_room_create.html",
4+
title: "创建群组/聊天室事件"
5+
}
6+
---

0 commit comments

Comments
 (0)