Skip to content
Snippets Groups Projects
Commit ef0ffa07 authored by Stefano Zacchiroli's avatar Stefano Zacchiroli
Browse files

REST server: also show index page on /graph

in addition to /
parent 5e46dc24
No related branches found
No related tags found
No related merge requests found
......@@ -196,6 +196,7 @@ def get_count_handler(ttype):
def make_app(backend, **kwargs):
app = RPCServerApp(**kwargs)
app.router.add_get('/', index)
app.router.add_get('/graph', index)
app.router.add_get('/graph/stats', stats)
app.router.add_get('/graph/leaves/{src}',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment