Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
…nctions into develop
  • Loading branch information
fgruchala committed Feb 25, 2019
2 parents 23afeb0 + be7ba32 commit 0e6ab14
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ export default (data, context) => {

return editionsService.findOne(editionId)
.then(edition => editionsService.findOneOnConferenceHall(edition.conferenceHall.eventId, edition.conferenceHall.apiKey))
.then(edition => edition.speakers);
.then(edition => {
return {speakers: edition.speakers};
});
};

0 comments on commit 0e6ab14

Please sign in to comment.