3771: Add "display replied to" functionality (#4834)

Earlier PR: https://github.com/tuskyapp/Tusky/pull/3778

Fixes: https://github.com/tuskyapp/Tusky/issues/3771
This commit is contained in:
UlrichKu 2025-01-06 10:27:27 +01:00 committed by GitHub
commit d6b276d8df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 104 additions and 38 deletions

View file

@ -67,6 +67,9 @@ data class Status(
val actionableStatus: Status
get() = reblog ?: this
val isReply: Boolean
get() = inReplyToId != null
@JsonClass(generateAdapter = false)
enum class Visibility(val int: Int) {
UNKNOWN(0),