Skip to content

Commit bde6685

Browse files
committed
feat(speaker): Add Toni Ristola as a speaker
1 parent 449092f commit bde6685

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/content.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function speakersContainSpeakerByName({
9696
}
9797

9898
function resolveSocialLinks(data) {
99-
function resolve(social) {
99+
function resolve(social, o) {
100100
const rules = {
101101
homepage: social.homepage,
102102
facebook: `https://facebook.com/${social.facebook}`,
@@ -119,6 +119,6 @@ function resolveSocialLinks(data) {
119119

120120
return data.map(o => ({
121121
...o,
122-
social: resolve(o.social),
122+
social: resolve(o.social, o),
123123
}));
124124
}

src/speakers/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ module.exports = [
1919
require("./shay-keinan"),
2020
require("./sia-karamalegos"),
2121
require("./sven-sauleau"),
22+
require("./toni-ristola"),
2223
require("./varya-stepanova"),
2324
];

src/speakers/toni-ristola.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("../organizers/toni-ristola");

0 commit comments

Comments
 (0)