Andrew Standley
Andrew Standley
Ran into a use case where a dev wanted to run some code before all handlers after authentication had run. The dev was trying to use the `before_request` hook which...
Related to #12 I've been thinking about this a bit, and I'd love to be able to extract some of the swagger properties from the doc-strings as well as from...
The `get` method attached by `cache_on_arguements` does not respect the `expiration_time` passed to `cache_on_arguments`. This leads to potentially bad behavior that `decorated_method.get()`does not return `NO_VALUE` when the cached value is...
The guardian backend crashes when attempting to split on a string with more than one '.' line 85 of backend.py `app_label, perm = perm.split('.')` This should be changed to `app_label,...
Flask has a signal [got_request_exception](https://flask.palletsprojects.com/en/2.2.x/api/#flask.got_request_exceptionl) intended to signify that an unhandled exception occurred in a handler. This signal is triggered by the default error handler, ref: https://github.com/pallets/flask/blob/0d8c8ba71bc6362e6ea9af08146dc97e1a0a8abc/src/flask/app.py#L1675. This means that...
i would love to see us eventually get to a place where we can also support Quart. _Originally posted by @gtmanfred in https://github.com/plangrid/flask-rebar/pull/311#pullrequestreview-1986392487_ Since Quart is the async evolution if...