Implementation to have a favorite DZ by user.

This commit is contained in:
Sébastien André
2021-03-24 18:04:08 +01:00
parent beee601a57
commit 0a6dbf42e4
12 changed files with 255 additions and 194 deletions

View File

@@ -23,7 +23,7 @@ namespace skydiveLogs_api.Infrastructure
.Include(x => x.DropZone)
.Include(x => x.Gear)
.Include(x => x.JumpType)
.Include(x => x.User)
//.Include(x => x.User)
.Query()
.Where(j => j.User.Id == user.Id)
.ToList();