forked from edward/owl-map
Bug fix for redirect after logout
This commit is contained in:
parent
43e11cdfba
commit
4ebe992919
|
@ -396,7 +396,7 @@ def login_openstreetmap():
|
||||||
|
|
||||||
@app.route('/logout')
|
@app.route('/logout')
|
||||||
def logout():
|
def logout():
|
||||||
next_url = request.args.get('next') or url_for('index')
|
next_url = request.args.get('next') or url_for('map_start_page')
|
||||||
flask_login.logout_user()
|
flask_login.logout_user()
|
||||||
flash('you are logged out')
|
flash('you are logged out')
|
||||||
return redirect(next_url)
|
return redirect(next_url)
|
||||||
|
|
Loading…
Reference in a new issue