I'm using flask and flask_login which works great with the the code snippets I've patched together, but I think I need to understand how it all works before I move on in the project. Assuming I've done:
login_manager = flask_login.LoginManager()
I also have two callbacks whose decorators are:
@login_manager.user_loader
and
@login_manager.request_loader
Which methods perform the callbacks for each of these?