Results 13 comments of XzaR90

You may need to self assign the filter? query = query.filter inside the loop? Or make the loop inside the f => {};

You can do something like this: ``` using AspNetCoreRateLimit; using Example.Core.Extensions; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Microsoft.IdentityModel.Tokens; using System; using System.IdentityModel.Tokens.Jwt; using System.Security.Claims; using System.Text; using System.Threading.Tasks; namespace Example.HttpRateLimiter {...

I had to download the repo because the NuGet version is little outdated. I made a fork and use it as a git submodule in my project. I come back...

@OutstandingBillNeal I am using the latest version of the nuget package now. ```C# public class CustomRateLimitConfiguration : RateLimitConfiguration { public CustomRateLimitConfiguration(IOptions ipOptions, IOptions clientOptions) : base(ipOptions, clientOptions) { } public...

Added support for custom link as well but with breaking changes, GenericHashLink. https://github.com/XzaR90/react-router-hash-link

Oh, did not check. Well my fork is using typescript and I don,t know if you still want keep plain js. If you have any plan to migrate you can...

In my fork it can be used like this, ``` { return `${props.isActive ? 'isActive ' : ''}`; }} style={(props) => { return props.isActive ? { fontWeight: 'bold' } :...

Hi, yes it is correct but it always getting generated on each add migration. If I do other changes it will add the code shown in the issue section. Should...

if the _secure__ls__metadata key is saved in a secure cookie it may be more secure?

I forked this and created another version, https://github.com/xzar90/secure-storage but it has less features but the metadata key is stored in a cookie instead and the code is enclosed.