From a42a2c1d68de37fa6c5df3315b420d6068d042dc Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 7 Apr 2021 00:56:09 -0500 Subject: [PATCH] Change index routing to route to all volumes --- stashr/routes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stashr/routes.py b/stashr/routes.py index 4fc51e8..7f673e4 100644 --- a/stashr/routes.py +++ b/stashr/routes.py @@ -120,11 +120,14 @@ def index_page(): flash('Please Log IN', 'Info') return redirect(url_for('login_page')) + return redirect(url_for('all_volumes_page')) + """ return render_template( 'index_page.html', title='Home', open_registration=stashrconfig['APP']['open_registration'] ) + """ # LOGIN