This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-idp-ltpa/middleware.py

8 lines
187 B
Python

from . import views
class LTPAMiddleware(object):
def process_response(self, request, response):
views.add_ltpa_token_to_response(request, response)
return response