Skip to content

Commit

Permalink
feat: add companyImg field to speaker
Browse files Browse the repository at this point in the history
  • Loading branch information
nalves599 committed Nov 14, 2024
1 parent 1f759b0 commit 2db3b63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions server/resources/deck.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ function transformSpeaker(speaker) {
name: speaker.name,
title: speaker.title,
img: speaker.imgs.speaker,
companyImg: speaker.imgs.company,
feedback: speaker.participation[0].feedback
}
}
1 change: 1 addition & 0 deletions server/views/speaker.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = function render (content) {
description: model.description,
title: model.title,
img: model.img,
companyImg: model.companyImg,
updated: model.updated
}
}
Expand Down

0 comments on commit 2db3b63

Please sign in to comment.