small fixes #9

Merged
Jan merged 2 commits from working into main 2024-10-07 12:18:33 +02:00
Showing only changes of commit 8898f7dfb8 - Show all commits

View File

@ -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():