Daniel DeGroff
Daniel DeGroff
`event.keyCode` is deprecated. https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode Example usage to allow for backwards compatibility from above link: Order of preference: 1. `event.key` 2. `event.keyIdentifier` 3. `event.keyCode` ``` window.addEventListener("keydown", function (event) { if (event.defaultPrevented)...
### Description See this comment https://github.com/FusionAuth/fusionauth-netcore-client/issues/13#issuecomment-608204114 Thanks to @ukevp for this suggestion: > Another standardization thing you might consider is your current use of newtonsoft.json. The history of that library...
Re: https://github.com/FusionAuth/fusionauth-client-builder/pull/24#issuecomment-724781327.
## Add Configuration for Reverse Proxy ### Problem A reverse proxy such as Kong may set the `X-Forwarded-Port` header and this value may need to be overridden so that the...
## General performance enhancements ### Description A project issue to track various performance related issues. ### Related - https://github.com/FusionAuth/fusionauth-internal-issues/issues/192 - https://github.com/FusionAuth/fusionauth-issues/issues/374 - https://github.com/FusionAuth/fusionauth-issues/issues/494 - https://github.com/FusionAuth/fusionauth-issues/issues/767 - https://github.com/FusionAuth/fusionauth-issues/issues/772 - https://github.com/FusionAuth/fusionauth-issues/issues/919 -...
## Move Event Log reaping to the Reaper service and limit total records to remove at once ### Description We should use a similar pattern for reaping Audit Logs and...
## Tenant configuration for blocked domains should still allow self-service edit as long as email is not changing ### Description Blocked domains are intended to prevent self-service registration or self-service...
## UI Updates for webhook event log ### Description Some things we should update to make this new UI feature more consistent. 1. On the index page we should use...
## Pin the HTTP method header columns on the API key pages ### Problem When you scroll on the add or edit API key page the table header columns go...