diff options
Diffstat (limited to 'kvision-modules/kvision-server-jooby/src/main/kotlin/pl')
-rw-r--r-- | kvision-modules/kvision-server-jooby/src/main/kotlin/pl/treksoft/kvision/remote/Profile.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvision-modules/kvision-server-jooby/src/main/kotlin/pl/treksoft/kvision/remote/Profile.kt b/kvision-modules/kvision-server-jooby/src/main/kotlin/pl/treksoft/kvision/remote/Profile.kt index 98f8bdb3..ee5c59fc 100644 --- a/kvision-modules/kvision-server-jooby/src/main/kotlin/pl/treksoft/kvision/remote/Profile.kt +++ b/kvision-modules/kvision-server-jooby/src/main/kotlin/pl/treksoft/kvision/remote/Profile.kt @@ -32,7 +32,7 @@ actual typealias Profile = CommonProfile /** * A helper extension function for processing with authenticated user profile. */ -fun <RESP> Request.withProfile(block: (Profile) -> RESP): RESP { +suspend fun <RESP> Request.withProfile(block: suspend (Profile) -> RESP): RESP { val profile = this.require(CommonProfile::class.java) as CommonProfile? return profile?.let { block(profile) |