feat: highlight story author in comments

This commit is contained in:
Harsh Shandilya 2024-11-14 01:15:54 +05:30
parent 7bdaf691df
commit 5db68ba186
5 changed files with 31 additions and 9 deletions

View file

@ -36,4 +36,5 @@ class LobstersPostDetails(
@SerialName("submitter_user") val submitter: String,
val tags: List<String>,
val comments: List<Comment>,
@SerialName("user_is_author") val userIsAuthor: Boolean = false,
)

View file

@ -27,7 +27,7 @@ data class UIPost(
@SerialName("submitter_user") val submitter: String,
val tags: List<String>,
val comments: List<Comment> = emptyList(),
val userIsAuthor: Boolean = false,
@SerialName("user_is_author") val userIsAuthor: Boolean = false,
) {
@KonvertFrom(
value = SavedPost::class,