Crud on users
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 52s
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 52s
This commit is contained in:
@@ -29,7 +29,7 @@ public class UserWriteService(
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new UserInvalidException(string.Join("; ", result.Errors));
|
||||
throw new UserInvalidException(string.Join("; ", result.Errors.Select(e => $"{e.Code} {e.Description}")));
|
||||
}
|
||||
|
||||
return userToCreate.Id;
|
||||
|
||||
Reference in New Issue
Block a user