Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
288 changed files with 15238 additions and 99 deletions
Showing only changes of commit d9f4176aca - Show all commits

View File

@ -71,6 +71,7 @@ public class CustomExceptionHandlerMiddleware(RequestDelegate next, ILogger<Cust
problemDetails.Status = StatusCodes.Status401Unauthorized; problemDetails.Status = StatusCodes.Status401Unauthorized;
problemDetails.Type = "https://tools.ietf.org/html/rfc9110#section-15.5.2"; problemDetails.Type = "https://tools.ietf.org/html/rfc9110#section-15.5.2";
problemDetails.Title = "Unauthorized access."; problemDetails.Title = "Unauthorized access.";
problemDetails.Detail = exception.Message;
break; break;
case ServerUnavailableException unavailableException: case ServerUnavailableException unavailableException:
problemDetails.Status = StatusCodes.Status503ServiceUnavailable; problemDetails.Status = StatusCodes.Status503ServiceUnavailable;