kotlin/app-homepage-react/src/main/kotlin/org/homepage/AppInstanceStorage.kt [11:23]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override suspend fun loadAppInstance(clientId: String): SpaceAppInstance? { return transaction { AppInstallation.select { AppInstallation.clientId.eq(clientId) } .map { SpaceAppInstance( it[AppInstallation.clientId], it[AppInstallation.clientSecret], it[AppInstallation.serverUrl], ) } .firstOrNull() } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - kotlin/space-events/src/main/kotlin/org/webhooks/AppInstanceStorage.kt [15:27]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override suspend fun loadAppInstance(clientId: String): SpaceAppInstance? { return transaction { AppInstallation.select { AppInstallation.clientId.eq(clientId) } .map { SpaceAppInstance( it[AppInstallation.clientId], it[AppInstallation.clientSecret], it[AppInstallation.serverUrl], ) } .firstOrNull() } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - kotlin/context-menu-extension/src/main/kotlin/com/example/AppInstanceStorage.kt [12:24]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override suspend fun loadAppInstance(clientId: String): SpaceAppInstance? { return transaction { AppInstallation.select { AppInstallation.clientId.eq(clientId) } .map { SpaceAppInstance( it[AppInstallation.clientId], it[AppInstallation.clientSecret], it[AppInstallation.serverUrl], ) } .firstOrNull() } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -