Skip to content

Commit

Permalink
change isSoulBound to not required
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperBatata committed Sep 26, 2023
1 parent a7d036d commit 591c611
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/id/walt/nftkit/rest/NftController.kt
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ object NftController {
}.pathParam<String>("contractAddress") {
}
.queryParam<Boolean>("isSoulbound") {
it.required(true)
it.required(false)

}
.body<MintRequest> {
it.description("")
Expand Down

0 comments on commit 591c611

Please sign in to comment.