Skip to content

Commit 73a27a2

Browse files
authored
feat: 🎉 Adding video link (same property name as last year) (#190)
1 parent 739dad6 commit 73a27a2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/hooks/use-sessionize.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ export interface Session {
2828
roomId: number;
2929
room: string;
3030
questionAnswers: QuestionAnswer[];
31+
recordingUrl: string;
32+
3133
slideDeck: string;
34+
video: string;
3235
}
3336

3437
export interface QuestionAnswer {
@@ -123,6 +126,7 @@ export const useSessionizeSchedule = () => {
123126
if (qa !== undefined) {
124127
room.session.slideDeck = qa.answer;
125128
}
129+
room.session.video = session.recordingUrl;
126130
}
127131

128132
return room;

0 commit comments

Comments
 (0)