Skip to content

Commit

Permalink
chore: updated did-key-creation-request parameter name (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplotean authored Jun 20, 2023
1 parent 07ba71d commit cde4692
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {

dependencies {
// SSIKIT
implementation("id.walt:waltid-ssikit:1.2306191203.0")
implementation("id.walt:waltid-ssikit:1.2306201406.0")
implementation("id.walt:waltid-sd-jwt-jvm:1.2306160840.0")

implementation("io.javalin:javalin-bundle:4.6.8")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ data class DidCreationRequest(
@Json(serializeNull = false) val didWebPath: String? = null,
@Json(serializeNull = false) val didEbsiVersion: Int = 1,
@Json(serializeNull = false) val network: String? = "testnet",
@Json(serializeNull = false) val isJwk: Boolean? = false,
@Json(serializeNull = false) val useJwkJcsPub: Boolean? = false,
)
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,8 @@ object WalletController {
val didStr = DidService.create(
req.method,
didKeyId,
DidKeyCreateOptions(isJwk = req.isJwk ?: false)
DidKeyCreateOptions(useJwkJcsPub = req.useJwkJcsPub ?: false)
)

ctx.result(didStr)
}

Expand Down

0 comments on commit cde4692

Please sign in to comment.