diff --git a/app/__init__.py b/app/__init__.py index 7d5873c..bdd5063 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -52,7 +52,7 @@ def create_app(): domains_with_time = get_allowed_domains_with_time() return jsonify(domains_with_time), 200 - @app.route('/') + @app.route('/web/list') def list_emails_page(): emails = get_latest_emails(count=50) return render_template('email_list.html', emails=emails)