Stefan Eriksson

Results 2 comments of Stefan Eriksson

I ended up not using dialog service. Instead I use MatDialog as a component of the page, and that works fine.

It is possible to use UseWhen to selectively add http logging to only some endpoints, like so: ``` app.UseWhen( context => context.Request.Path.StartsWithSegments("/api"), builder => builder.UseHttpLogging()); ```