Skip to content

Commit debc800

Browse files
committed
futher recordingUrl updates
1 parent 601b39f commit debc800

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

backend/datastore/src/jvmMain/kotlin/dev/johnoreilly/confetti/backend/datastore/DataStore.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ class DataStore {
432432
"links",
433433
links.map { it.toMap().toJsonElement().toString() }.toValue(excludeFromIndex = true)
434434
)
435+
.set("recordingUrl", recordingUrl)
435436
.build()
436437
}
437438

shared/src/commonMain/graphql/Queries.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ fragment SessionDetails on Session {
118118
name
119119
}
120120
tags
121+
recordingUrl
121122
}
122123

123124
fragment SpeakerDetails on Speaker {

shared/src/commonMain/kotlin/dev/johnoreilly/confetti/preview/MockData.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,6 @@ The talk will cover
6464
),
6565
room = SessionDetails.Room(name = "Effectenbeurszaal", id = "0", __typename = "Room"),
6666
tags = listOf(),
67-
__typename = "Session"
67+
__typename = "Session",
68+
recordingUrl = null
6869
)

0 commit comments

Comments
 (0)