Skip to content

Instantly share code, notes, and snippets.

@timwis
Created June 29, 2016 11:43
Show Gist options
  • Save timwis/c481c8b1f1910e56526f2de95aa4ed6d to your computer and use it in GitHub Desktop.
Save timwis/c481c8b1f1910e56526f2de95aa4ed6d to your computer and use it in GitHub Desktop.
app.router((route) => [
route('/', layouts.root(views.connect)),
route('/tables', layouts.root(layouts.database()), [
route('/:name', layouts.root(layouts.database(views.tableRows, 'rows')), [
route('/schema', layouts.root(layouts.database(views.tableSchema, 'schema'))),
route('/options', layouts.root(layouts.database(views.tableOptions, 'options')))
])
])
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment