async def team_join(event: Event, app: SirBot) -> None: """ Handler for when the Slack workspace has a new member join. After 30 seconds sends the new user a greeting, some resource links, and notifies the community channel of the new member. """ slack_api = app.plugins["slack"].api user_id = event["user"]["id"] *user_messages, community_message, outreach_team_message = build_messages( user_id) futures = [ send_user_greetings(user_messages, slack_api), send_community_notification(community_message, slack_api), send_community_notification(outreach_team_message, slack_api), ] logger.info(f"New team join event: {event}") await asyncio.sleep(30) await asyncio.wait(futures) headers = await get_backend_auth_headers(app.http_session) if headers: await link_backend_user(user_id, headers, slack_api, app.http_session)
async def team_join(event, app): slack_api = app.plugins["slack"].api *user_messages, community_message = build_messages(event['user']['id']) futures = [ send_user_greetings(user_messages, slack_api), send_community_notification(community_message, slack_api) ] asyncio.sleep(30) await asyncio.wait(futures)
async def team_join(event: Event, app: SirBot) -> None: """ Handler for when the Slack workspace has a new member join. After 30 seconds sends the new user a greeting, some resource links, and notifies the community channel of the new member. """ slack_api = app.plugins["slack"].api *user_messages, community_message = build_messages(event['user']['id']) futures = [ send_user_greetings(user_messages, slack_api), send_community_notification(community_message, slack_api) ] await asyncio.sleep(30) await asyncio.wait(futures)