(20241129) Testing MySQL integration for GMail OAuth flow.

This commit is contained in:
2024-11-29 13:21:22 +05:30
parent e52de710a1
commit 1052a4c4ea
+3 -1
View File
@@ -163,8 +163,10 @@ class BaseModel:
if self._http_client is not None and self._alert_url is not None: if self._http_client is not None and self._alert_url is not None:
response = await self._http_client.post( response = await self._http_client.post(
url = self._alert_url, url = self._alert_url,
headers = {
"X-Session-Token": session_token
},
json = { json = {
"sessionToken": session_token,
"message": message, "message": message,
"type": alert_type "type": alert_type
} }