Closed mcrrx closed 1 year ago
我在个人设置里面设置了过期时间是30天,然后在通知设置里的webhook模块请求体里面添加了以下内容 { "msgtype": "text","text": {"content":"===以下SSL证书即将过期===\n {% for item in domain_list %} {{item.domain}} - {{item.expire_days}} \n {% endfor %}"},"at": {"isAtAll": true} }
最后通知出来的内容是所有域名,并没有筛选出小于30天的,请问如何修改 @mouday
可以使用jinja2的语法,加一个if判断即可
参考:https://github.com/mouday/domain-admin/blob/master/docs/notify/updateNotifyOfUser.md 字段参考 https://github.com/mouday/domain-admin/blob/master/docs/domain/getDomainById.md
好的,谢谢
我在个人设置里面设置了过期时间是30天,然后在通知设置里的webhook模块请求体里面添加了以下内容 { "msgtype": "text","text": {"content":"===以下SSL证书即将过期===\n {% for item in domain_list %} {{item.domain}} - {{item.expire_days}} \n {% endfor %}"},"at": {"isAtAll": true} }
最后通知出来的内容是所有域名,并没有筛选出小于30天的,请问如何修改 @mouday