Complete CRUD for games
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 51s

This commit is contained in:
2025-04-12 21:32:10 +02:00
parent 5d655d8b4b
commit 2f9457fc7e
9 changed files with 276 additions and 98 deletions

View File

@@ -14,8 +14,6 @@ public class UserProfile : Profile
.ForMember(d => d.Username, o => o.MapFrom(s => s.Username))
.ForMember(d => d.Password, o => o.MapFrom(s => s.Password))
.ForMember(d => d.Role, o => o.MapFrom(s => s.Role))
.ForMember(d => d.CreationGames, o => o.MapFrom(s => s.CreationGames))
.ForMember(d => d.ModificationGames, o => o.MapFrom(s => s.ModificationGames))
.ReverseMap();
}