Fix the redirect to /webmail

master
kaiyou 7 years ago
parent f615af4a88
commit 6cd8e0e336

@ -8,6 +8,11 @@ from email.mime import text
from urllib import parse
@app.route('/home', methods=["GET"])
def home():
return flask.redirect('/webmail/')
@app.route('/', methods=["GET"])
@access.authenticated
def index():

Loading…
Cancel
Save