You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
Pages should use basically the same filter types as controllers, but should expose some unique functionality in place of action filters. In general a pages developer will want to accomplish the same kinds of things with filters as a controller/action developer.
This includes:
authorization (authZ filters)
middleware-like behavior (resource filters)
scoped exception handling (exception filters)
decorating the execution of results (result filters)
manipulating action arguments (action filters)
We'll want to provide a little something extra for pages, likely to do with manipulating handler methods 👍
There's a lot more to do here, because designing a new filter type, we need to decide how filters get configured when you have a mix of pages/page-models/handler-methods/application-model.