1 # Mattermost Bot module.
2 # Copyright (c) 2016-2022 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
3 # published under MIT-License
6 from inspect import cleandoc
9 from AbstractCommand import AbstractCommand
10 class CommandHot(AbstractCommand):
12 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
13 "auto_complete_hint": "",
15 USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Remind participants of a discussion to cool off a little."
18 def on_POST(self, request, data):
20 :fire::fire::fire::fire::fire::fire:
21 ##### This discussion seems to have taken an unhealthy trajectory.
22 **``We would like to remember all participants to stay as objective, nice and cool as possible!``**
23 :fire::fire::fire::fire::fire::fire:
26 request.cmd_respond_text_chan(msg)