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
245 changed files with 10982 additions and 98 deletions
Showing only changes of commit 8fad070a9c - Show all commits
.env
.gitea/workflows
.gitignore
ApiDto
Backend.slnDockerfile
Endpoint
Backend.http
Common
Configuration
Controllers
Endpoint.csprojProgram.csWeatherForecast.cs
wwwroot
css
README.md
Security
SqlData
Application
Application.csproj
Common
Cqrs
Campus
Discipline
Faculty
Group
LectureHall
Professor
Schedule
DependencyInjection.cs
Interfaces
Domain
Migrations
Persistence
nuget.config

@ -56,7 +56,7 @@ public class CustomExceptionHandlerMiddleware(RequestDelegate next, ILogger<Cust
if (code == StatusCodes.Status500InternalServerError)
{
error = "Internal Server Error";
logger.LogError("Internal server error: {Message}\nStackTrace:\n{StackTrace}", exception.Message, exception.StackTrace);
logger.LogError(exception, "Internal server error when processing the request");
}
else
error = exception.Message;