Skip to content

Commit

Permalink
[FIX] pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMarcos committed May 17, 2024
1 parent bba056b commit 68ce4bc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ def send_discord_notification(self, ticket):
if webhook_url:
description = html2plaintext(ticket.description or "")
data = {
"content": f"Novo ticket criado:\n**Título:** {ticket.name}\n**Cliente:** {ticket.partner_id.name}\n**Responsável:** {ticket.user_id.name or 'N/A'}\n**Descrição:** {description}"
"content": f"Novo ticket criado:\n**Título:** {ticket.name}\
\n**Cliente:** {ticket.partner_id.name}\
\n**Responsável:** {ticket.user_id.name or 'N/A'}\
\n**Descrição:** {description}"
}
headers = {"Content-Type": "application/json"}
response = requests.post(webhook_url, json=data, headers=headers)

if response.status_code != 202 or 200:
pass
9 changes: 6 additions & 3 deletions enterprise_helpdesk_discord_connector/models/res_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def action_test_discord_webhook(self):
)
if webhook_url:
data = {
"content": "Teste de integração do webhook do Discord: A integração está funcionando corretamente."
"content": "Teste de integração do webhook do Discord: \
A integração está funcionando corretamente."
}
headers = {"Content-Type": "application/json"}
response = requests.post(webhook_url, json=data, headers=headers)
Expand All @@ -42,7 +43,8 @@ def action_test_discord_webhook(self):
"tag": "display_notification",
"params": {
"title": "Erro!",
"message": f"Falha ao enviar notificação para o Discord: {response.status_code} - {response.text}",
"message": f"Falha ao enviar notificação para o \
Discord: {response.status_code} - {response.text}",
"type": "danger",
"sticky": False,
},
Expand All @@ -53,7 +55,8 @@ def action_test_discord_webhook(self):
"tag": "display_notification",
"params": {
"title": "Erro!",
"message": "URL do webhook do Discord não está configurada.",
"message": "URL do webhook do Discord não \
está configurada.",
"type": "danger",
"sticky": False,
},
Expand Down

0 comments on commit 68ce4bc

Please sign in to comment.