root page now redirects to start, /all_links exists
This commit is contained in:
parent
aa2fa44207
commit
8898f7dfb8
@ -640,6 +640,10 @@ def has_no_empty_params(rule):
|
||||
return len(defaults) >= len(arguments)
|
||||
|
||||
@app.route("/")
|
||||
def root():
|
||||
return redirect("/start")
|
||||
|
||||
@app.route("/all_links")
|
||||
def all_links():
|
||||
links = []
|
||||
for rule in app.url_map.iter_rules():
|
||||
|
Loading…
Reference in New Issue
Block a user