We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the README.rst, the following reference block for Flask refers to DjangoOIDCLogin and DjangoMessageLaunch methods:
README.rst
Flask cache data storage
from flask_caching import Cache from pylti1p3.contrib.flask import FlaskCacheDataStorage cache = Cache(app) def login(): ... launch_data_storage = FlaskCacheDataStorage(cache) oidc_login = DjangoOIDCLogin(request, tool_conf, launch_data_storage=launch_data_storage) def launch(): ... launch_data_storage = FlaskCacheDataStorage(cache) message_launch = DjangoMessageLaunch(request, tool_conf, launch_data_storage=launch_data_storage) def restore_launch(): ... launch_data_storage = FlaskCacheDataStorage(cache) message_launch = DjangoMessageLaunch.from_cache(launch_id, request, tool_conf, launch_data_storage=launch_data_storage)
It should be fixed to refer to the correct Flask methods.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the
README.rst
, the following reference block for Flask refers to DjangoOIDCLogin and DjangoMessageLaunch methods:Flask cache data storage
It should be fixed to refer to the correct Flask methods.
The text was updated successfully, but these errors were encountered: