todo: chat-only view

このコミットが含まれているのは:
n9k 2021-04-13 17:10:21 +00:00
コミット c67255431c
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -32,7 +32,7 @@ def index(token=None):
except KeyError:
pass
viewership.setdefault(token)
response = Response(render_template('index.html', token=token))
response = Response(render_template('index.html', token=token)) # TODO: add a view of the chat only, either as an arg here or another route
response.set_cookie('token', token)
return response