Commit 82dd849c by Oleksandr Barabash

handle_mars_report fixed

parent 8566eebc
...@@ -151,11 +151,9 @@ class TeamsMessagingExtensionsActionPreviewBot(TeamsActivityHandler): ...@@ -151,11 +151,9 @@ class TeamsMessagingExtensionsActionPreviewBot(TeamsActivityHandler):
future.set_exception(e) future.set_exception(e)
try: try:
# send mail notifications! # todo(s1z): Create a card with links
await turn_context.send_activity( message = "<br/>".join([file.url for file in report.files])
f"the team aad_object_id: {res}<br/>" await turn_context.send_activity(message)
f"channel data: {turn_context.activity.channel_data}"
)
except Exception: except Exception:
raise raise
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment