We're not using this anymore, (instead starting out with active=False
until the hunt is really up and running).
name = hunt['name']
channel_id = hunt['channel_id']
- text = "{}: ".format(name)
-
- if (channel_id.startswith("placeholder-")):
- text += "[Slack channel is still being created. Please wait.]"
- else:
- text += "<#{}>".format(channel_id)
+ text = "{}: <#{}>".format(name, channel_id)
return section_block(text_block(text))