]> git.cworth.org Git - turbot/blob - turbot/events.py
Move app_home_opened function down into turbot/events.py
[turbot] / turbot / events.py
1 import turbot.views
2
3 def app_home_opened(slack_client, body):
4     user_id = body['event']['user']
5     view = turbot.views.home(user_id, body)
6     slack_client.views_publish(user_id=user_id, view=view)
7     return "OK"