mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-07 10:20:57 +00:00
feat: 添加 飞书 (#6602)
* feat: 添加 飞书 Co-authored-by: xinwen <coderWen@126.com> Co-authored-by: wenyann <64353056+wenyann@users.noreply.github.com>
This commit is contained in:
19
apps/notifications/backends/feishu.py
Normal file
19
apps/notifications/backends/feishu.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from django.conf import settings
|
||||
|
||||
from common.message.backends.feishu import FeiShu as Client
|
||||
from .base import BackendBase
|
||||
|
||||
|
||||
class FeiShu(BackendBase):
|
||||
account_field = 'feishu_id'
|
||||
is_enable_field_in_settings = 'AUTH_FEISHU'
|
||||
|
||||
def __init__(self):
|
||||
self.client = Client(
|
||||
app_id=settings.FEISHU_APP_ID,
|
||||
app_secret=settings.FEISHU_APP_SECRET
|
||||
)
|
||||
|
||||
def send_msg(self, users, msg):
|
||||
accounts, __, __ = self.get_accounts(users)
|
||||
return self.client.send_text(accounts, msg)
|
Reference in New Issue
Block a user