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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Changelog
#41Implemented support for operational plugins: Operational plugins bring production-ready features to your application supporting the operations team. See the documentation
Authentication Filters allows to protect selected routes under an authentication scheme. To protect an specific route just decorate it sending authenticatedBy: with a proper authentication filter. Currently two options are supported:
JWTBearer Auth: In this case the permissions contained in the claims are available in the HttpRequestContext after a successful authentication.
Basic Auth: Integrating the facilities already provided by Zinc HTTP Components
JSON RPC Integration: Now you can combine JSON RPC endpoints in your REST API, just use JsonRPCRequestHandler in the controller and provide the corresponding route definition. This integration is made against juliendelplanque/JRPC library
SUnit extensions: Now you can subclass HTTPBasedRESTfulAPITest in case you want to test an API
Migration Guide
Now you need to provide an #operations key in the API configuration as explained in the documentation