From 0a40ddd7c2fc9c1884e65266f28c250c7f500997 Mon Sep 17 00:00:00 2001 From: Chris Alfano Date: Wed, 16 Mar 2022 19:07:38 -0400 Subject: [PATCH] feat(slack): more specific hello message request --- event-handlers/Emergence/Slack/team_join/general-welcome.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/event-handlers/Emergence/Slack/team_join/general-welcome.php b/event-handlers/Emergence/Slack/team_join/general-welcome.php index 44db712e..a1a66cc5 100644 --- a/event-handlers/Emergence/Slack/team_join/general-welcome.php +++ b/event-handlers/Emergence/Slack/team_join/general-welcome.php @@ -3,6 +3,6 @@ Emergence\Slack\API::request('chat.postMessage', [ 'post' => [ 'channel' => Emergence\Slack\API::getChannelId('general'), - 'text' => ":waving: Welcome, <@{$_EVENT['user']['id']}>! What are you hoping to get out of your time with Code for Philly?" + 'text' => ":waving: Welcome, <@{$_EVENT['user']['id']}>! When you get the chance, please reply to this message in a thread to introduce yourself and mention anything you're hoping to get out of your time with Code for Philly" ] -]); \ No newline at end of file +]);