Skip to content

Tag: flask

Is it possible to redirect inside a middleware class?

So I have a Middleware class that is supposed to get the cookies from the request and then send it to a function isAuthenticated which returns either True or False now if the function returns False I need to redirect to /login page is that possible to do? even though I don’t have the request object I on…