idbates

Results 3 issues of idbates

By default SendGrid enables click tracking which isn't always desirable for all applications. To disable its necessary to call SendGridMessage.SetClickTracking(false, false). The SendGridMessage is created locally within SendGridSender.SendResponseAsync. For our...

Using the following code snippet to write an excel file to a memory stream. ``` csharp using var ms = new MemoryStream(); var operators = _operatorRepository.Table.Where(p=> p.ForsApiProviderId == id ).ToList();...

Our application is using: - **ABP 8.0.0** - **Angular** - **EF Core** Pen test results have requested we make all cookies `HttpOnly` / `Secure`. To achieve this we create this...