Skip to content

Commit

Permalink
VKT(Backend): Return examiner's nickname instead of multiple first na…
Browse files Browse the repository at this point in the history
…mes for public listing
  • Loading branch information
pkoivisto committed Nov 1, 2024
1 parent 6e40c71 commit b113a88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private static PublicExaminerDTO toPublicExaminerDTO(Examiner examiner) {
.builder()
.id(examiner.getId())
.lastName(examiner.getLastName())
.firstName(examiner.getFirstName())
.firstName(examiner.getNickname())
.languages(languages)
.municipalities(
examiner
Expand Down

0 comments on commit b113a88

Please sign in to comment.