web app can create and join sessions, updated node info panel and edge info panel

This commit is contained in:
Blake J. Harnden 2018-05-09 13:38:46 -07:00
parent cd949340ac
commit b1b05a7eaa
6 changed files with 91 additions and 24 deletions

View file

@ -147,10 +147,9 @@ def get_session(session_id):
},
"url": "/sessions/%s/nodes/%s" % (session_id, node.objid)
})
state = EventTypes(session.state)
return jsonify(
state=state.name,
state=session.state,
nodes=nodes
)