We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa67691 commit 310ac81Copy full SHA for 310ac81
1 file changed
hackathon/views.py
@@ -360,7 +360,8 @@ def view_hackathon(request, hackathon_id):
360
paginator = Paginator(teams, 3)
361
page = request.GET.get('page')
362
paged_teams = paginator.get_page(page)
363
- create_private_channel = (settings.SLACK_ENABLED and settings.SLACK_ADMIN_TOKEN)
+ create_private_channel = (settings.SLACK_ENABLED and settings.SLACK_BOT_TOKEN
364
+ and settings.SLACK_ADMIN_TOKEN)
365
366
context = {
367
'hackathon': hackathon,
0 commit comments