Skip to content

Commit

Permalink
fix: 触发器企业微信机器人通知webhook通知失败的问题
Browse files Browse the repository at this point in the history
doc: 更新 2.7.3 发布文档
  • Loading branch information
wmcowen committed Dec 19, 2024
1 parent 6d94062 commit f61a48e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
11 changes: 10 additions & 1 deletion config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,4 +973,13 @@ def redirect_func(request):
"itsm.helper.permissions.check_permission_success"
)

QW_WEB_HOOK_URL = os.getenv("BKAPP_QW_WEB_HOOK_URL", "")
if RUN_VER == "ieod":
QW_WEB_HOOK_URL = os.getenv(
"BKAPP_QW_WEB_HOOK_URL",
"http://in.qyapi.weixin.qq.com/cgi-bin/webhook/send?key={}",
)
else:
QW_WEB_HOOK_URL = os.getenv(
"BKAPP_QW_WEB_HOOK_URL",
"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key={}",
)
1 change: 1 addition & 0 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
【新增】meta上下文管理功能,应用于快速审批、MOA和通知过滤
【修复】API请求节点POST参数编辑渲染问题
【修复】"提交"按钮未国际化,英语界面下"返回单据列表"按钮文字超出
【修复】触发器企业微信机器人通知webhook通知发送失败


## [Version: 2.7.2] - 2024-11-18
Expand Down
1 change: 1 addition & 0 deletions docs/RELEASE_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
【Feature】Add meta context management, applied to fast approval, MOA, and notification receivers filter.
【Fix】API request node POST parameter editing rendering issue.
【Fix】"Submit" button was not internationalized, "Return to Ticket List" button text overflow.
【Fix】Resolve the issue of WeChat Work Bot Trigger webhook notification failure.


## [Version: 2.7.2] - 2024-11-18
Expand Down

0 comments on commit f61a48e

Please sign in to comment.