Aleks Vujić

Results 11 issues of Aleks Vujić

I checked [sample](https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/blob/master/samples/HealthChecks.UI.Oidc/Startup.cs#L64) for Health Checks UI and found out that only UI requires authorization, while the endpoint is unprotected. Was this done on purpose? Why would you protect the...

We are using .NET Core 3.1, [Microsoft.EntityFrameworkCore v3.1.9][1] and [Npgsql.EntityFrameworkCore.PostgreSQL v3.1.4][2]. We have 2 database schemas and corresponding `DbContext` files: | **schema** | **DbContext** | |--------------|---------------------| | `test1` | `Test1DbContext.cs`...

customer-reported

We have a very simple page layout. Left column (`col-4`) displays jsTree and right column (`col-8`) displays relevant data about the selected node. We noticed that jsTree doesn't break node...

We are using .NET 6, [Hangfire.AspNetCore 1.7.31](https://www.nuget.org/packages/Hangfire.AspNetCore/1.7.31) and [Hangfire.InMemory 0.3.4](https://github.com/HangfireIO/Hangfire.InMemory/). This is how we configure Hangfire in `Startup.cs`: ```cs public void ConfigureServices(IServiceCollection services) { // ... services.AddHangfire(configuration => { configuration.UseInMemoryStorage();...

# What did you do? ## Architecture diagram We are using Apache Thrift RPC server written in C#. It is exposed behind Traefik and Kestrel over HTTP protocol. Architecture diagram...

kind/bug/possible
area/server

Previously, documentation for importing `google_project_iam_member` contained a typo in the `id` section. I changed it from ... ``` id = ""{{project_id}} roles/viewer user:[email protected]"m" ``` ... to ... ``` id =...

We have a .NET 7 web application. We are using [Microsoft.EntityFrameworkCore.Relational 7.0.13](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Relational/7.0.13), [Npgsql.EntityFrameworkCore.PostgreSQL 7.0.11](https://www.nuget.org/packages/Npgsql.EntityFrameworkCore.PostgreSQL/7.0.11) and [linq2db.EntityFrameworkCore 7.6.0](https://www.nuget.org/packages/linq2db.EntityFrameworkCore/7.6.0). We use database-first approach and scaffold our database tables to C# models. Our...

We are using .NET 7, [AspNetCore.HealthChecks.UI 7.0.2](https://www.nuget.org/packages/AspNetCore.HealthChecks.UI/7.0.2) and [AspNetCore.HealthChecks.UI.Client 7.1.0](https://www.nuget.org/packages/AspNetCore.HealthChecks.UI.Client/7.1.0). We have the following code in `Startup.cs`: ```cs public void ConfigureServices(IServiceCollection services) { services .AddHealthChecks() .AddCheck("Notifications service health check", tags:...

question

Changed `Documentatin` to `Documentation` in `README.md`.

Currently, if "Skip if output size is bigger than the original" is checked and user starts the compression process, the compressed files which are larger than the original file are...

feature request