Skip to content

Commit

Permalink
release: 0.5.0 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb authored May 12, 2024
2 parents 00a96b7 + aa2275d commit b355b39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ data class PersonaResponse(
val id: String,
val type: PersonaType,
val level: String,
val visible: Boolean,
)
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data class UserResponse(
user.id.toString(),
user.name,
user.personas.map {
PersonaResponse(it.id.toString(), it.type, it.level().toString())
PersonaResponse(it.id.toString(), it.type, it.level().toString(), it.visible)
}.toList()
)
}
Expand Down

0 comments on commit b355b39

Please sign in to comment.