Skip to content

Commit

Permalink
feat: 🎉 Adding video link (same property name as last year) (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
langecode authored Dec 20, 2024
1 parent 739dad6 commit 73a27a2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/hooks/use-sessionize.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ export interface Session {
roomId: number;
room: string;
questionAnswers: QuestionAnswer[];
recordingUrl: string;

slideDeck: string;
video: string;
}

export interface QuestionAnswer {
Expand Down Expand Up @@ -123,6 +126,7 @@ export const useSessionizeSchedule = () => {
if (qa !== undefined) {
room.session.slideDeck = qa.answer;
}
room.session.video = session.recordingUrl;
}

return room;
Expand Down

0 comments on commit 73a27a2

Please sign in to comment.