MCPcopy Create free account
hub / github.com/realpython/discover-flask / logout

Function logout

project/users/views.py:49–52  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

47@users_blueprint.route('/logout') # pragma: no cover
48@login_required # pragma: no cover
49def logout():
50 logout_user()
51 flash('You were logged out.')
52 return redirect(url_for('home.welcome'))
53
54
55@users_blueprint.route(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected