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 # pylint: disable=wrong-import-position
10 from AbstractCommand import AbstractCommand
11 class CommandHot(AbstractCommand):
13 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
14 "auto_complete_hint": "",
16 USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PUBLIC+"Remind participants of a discussion to cool off a little."
19 def on_POST(self, request, data):
21 :fire::fire::fire::fire::fire::fire:
22 ##### This discussion seems to have taken an unhealthy trajectory.
23 **``We would like to remember all participants to stay as objective, nice and cool as possible!``**
24 :fire::fire::fire::fire::fire::fire:
27 request.respond_cmd_chan(msg)