feat: add optional student nickname for informal display
Keep legal first and last names for formal lists; show DisplayFirstName on teams, calendars, and import matching so two Josiahs can be told apart. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -37,7 +37,7 @@ public class MeetingScheduleDataService : IMeetingScheduleDataService
|
||||
.ThenInclude(t => t.Captain)
|
||||
.Include(e => e.EventRankings)
|
||||
.ThenInclude(e => e.EventDefinition)
|
||||
.OrderBy(e => e.FirstName)
|
||||
.OrderBy(e => e.Nickname ?? e.FirstName)
|
||||
.ToArrayAsync();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user