This is an automated email from the ASF dual-hosted git repository.
linkinstar pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
from 0efbc73 Update README.md to Add Okta WIC
new 464951c feat: add support for Lark notifications
new 61cb6c4 docs: add permission set to bot tutorial
new 507dd03 perf: remove type conversion
new 82497c4 fix: get plugin info from i18n
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
notification-lark/README.md | 51 ++++
notification-lark/README_CN.md | 50 ++++
notification-lark/config.go | 190 ++++++++++++
notification-lark/docs/1.png | Bin 0 -> 385099 bytes
notification-lark/docs/2.png | Bin 0 -> 453527 bytes
notification-lark/docs/3.png | Bin 0 -> 351335 bytes
notification-lark/docs/4.png | Bin 0 -> 364168 bytes
notification-lark/go.mod | 51 ++++
{notification-slack => notification-lark}/go.sum | 171 ++++++-----
notification-lark/i18n/en_US.yaml | 104 +++++++
notification-lark/i18n/translation.go | 61 ++++
notification-lark/i18n/zh_CN.yaml | 104 +++++++
{cdn-s3 => notification-lark}/info.yaml | 8 +-
notification-lark/lark_card.go | 268 +++++++++++++++++
notification-lark/lark_card_test.go | 178 +++++++++++
notification-lark/notification.go | 328 +++++++++++++++++++++
.../user_config.go | 92 +++---
.../es_log.go => notification-lark/utils.go | 44 +--
util/util.go => notification-lark/utils_test.go | 35 +--
19 files changed, 1568 insertions(+), 167 deletions(-)
create mode 100644 notification-lark/README.md
create mode 100644 notification-lark/README_CN.md
create mode 100644 notification-lark/config.go
create mode 100644 notification-lark/docs/1.png
create mode 100644 notification-lark/docs/2.png
create mode 100644 notification-lark/docs/3.png
create mode 100644 notification-lark/docs/4.png
create mode 100644 notification-lark/go.mod
copy {notification-slack => notification-lark}/go.sum (50%)
create mode 100644 notification-lark/i18n/en_US.yaml
create mode 100644 notification-lark/i18n/translation.go
create mode 100644 notification-lark/i18n/zh_CN.yaml
copy {cdn-s3 => notification-lark}/info.yaml (84%)
create mode 100644 notification-lark/lark_card.go
create mode 100644 notification-lark/lark_card_test.go
create mode 100644 notification-lark/notification.go
copy {notification-slack => notification-lark}/user_config.go (54%)
copy search-elasticsearch/es_log.go => notification-lark/utils.go (54%)
copy util/util.go => notification-lark/utils_test.go (64%)