Forums

flask_login callbacks - which methods call them

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?

We can help you with our services but for questions like that it would be better to ask on more general forums.

What are "more general" forums?

Forums that are focussed on the specifics flask_login. You might also find useful information in the flask_login documentation.

Thanks. I looked at the flask_login source code and other source and figured it out.