We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b759ba + c2f0761 commit 7b12655Copy full SHA for 7b12655
1 file changed
PocketDDD.Server/PocketDDD.Server.Services/SessionizeService.cs
@@ -88,13 +88,13 @@ public async Task UpdateFromSessionize()
88
SessionizeId = item.id,
89
EventDetail = dbEvent,
90
SpeakerToken = Guid.NewGuid(),
91
- FullDescription = ""
+ ShortDescription = ""
92
};
93
dbContext.Sessions.Add(dbSession);
94
}
95
96
dbSession.Title = item.title;
97
- dbSession.ShortDescription = item.description;
+ dbSession.FullDescription = item.description;
98
dbSession.Speaker = GetSpeakers(speakers, item.speakers);
99
dbSession.Track = dbTracks.Single(x => x.SessionizeId == item.roomId);
100
dbSession.TimeSlot = GetTimeSlot(dbTimeSlots, item.startsAt, item.endsAt);
0 commit comments