We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9dc43 commit dbcd7dcCopy full SHA for dbcd7dc
oura-library/src/main/kotlin/org/radarbase/oura/user/OuraUser.kt
@@ -23,5 +23,6 @@ data class OuraUser(
23
override val observationKey: ObservationKey = ObservationKey(projectId, userId, sourceId)
24
override val versionedId: String = "$id${version?.let { "#$it" } ?: ""}"
25
26
- fun isComplete() = isAuthorized && (endDate == null || startDate.isBefore(endDate)) && serviceUserId != null
+ fun isComplete() =
27
+ isAuthorized && (endDate == null || startDate.isBefore(endDate)) && serviceUserId != null
28
}
0 commit comments