def create_chat_start_section()

in bots/incident-response-slackbot/incident_response_slackbot/handlers.py [0:0]


    def create_chat_start_section(self, user_id):
        return {
            "type": "section",
            "block_id": "started_chat",
            "text": {
                "type": "mrkdwn",
                "text": f"<@{user_id}> started a chat.",
                "verbatim": True,
            },
        }