forked from open-webui/open-webui
refactor: dynamically swap activitySubtitle
and activityImage
if CUSTOM_NAME
has been set
This commit is contained in:
parent
5eac5c54f8
commit
427ca4e3f5
2 changed files with 15 additions and 17 deletions
|
@ -1,7 +1,7 @@
|
|||
import json
|
||||
|
||||
import requests
|
||||
from config import VERSION
|
||||
from config import VERSION, WEBUI_FAVICON_URL, WEBUI_NAME
|
||||
|
||||
|
||||
def post_webhook(url: str, message: str, event_data: dict) -> bool:
|
||||
|
@ -26,8 +26,8 @@ def post_webhook(url: str, message: str, event_data: dict) -> bool:
|
|||
"sections": [
|
||||
{
|
||||
"activityTitle": message,
|
||||
"activitySubtitle": f"Open WebUI ({VERSION}) - {action}",
|
||||
"activityImage": "https://openwebui.com/favicon.png",
|
||||
"activitySubtitle": f"{WEBUI_NAME} ({VERSION}) - {action}",
|
||||
"activityImage": WEBUI_FAVICON_URL,
|
||||
"facts": facts,
|
||||
"markdown": True,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue