Merge pull request #967 from vector-im/feature/bma/detektConfig

Update detekt config.
This commit is contained in:
Benoit Marty
2023-07-28 16:47:26 +02:00
committed by GitHub
90 changed files with 296 additions and 198 deletions

View File

@@ -36,7 +36,7 @@ import io.element.android.libraries.pushproviders.api.PushData
data class PushDataFirebase(
val eventId: String?,
val roomId: String?,
var unread: Int?,
val unread: Int?,
val clientSecret: String?
)

View File

@@ -47,7 +47,7 @@ data class PushDataUnifiedPush(
data class PushDataUnifiedPushNotification(
@SerialName("event_id") val eventId: String? = null,
@SerialName("room_id") val roomId: String? = null,
@SerialName("counts") var counts: PushDataUnifiedPushCounts? = null,
@SerialName("counts") val counts: PushDataUnifiedPushCounts? = null,
)
@Serializable