Hey, Using python backend I want to audit every re...
# support-questions-legacy
a
Hey, Using python backend I want to audit every request
Copy code
@app.before_request
@verify_session(session_required=False)
When using the code above - the actual logic route code is not called When changing to @app.after_route it does work. But, I want it to be before every call
2 Views