Merge branch 'fix-411'

This commit is contained in:
Khanh Ngo 2018-11-28 14:40:25 +07:00
commit 29b110dd15

View file

@ -301,8 +301,8 @@ def saml_authorized():
@login_manager.unauthorized_handler
def unauthorized_callback():
session['next'] = request.path
return redirect('/login')
session['next'] = request.script_root + request.path
return redirect(url_for('login'))
@app.route('/login', methods=['GET', 'POST'])