-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New guide: Update a DID #1415
New guide: Update a DID #1415
Conversation
β Deploy Preview for tbd-website-developer ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
.build() | ||
|
||
// add a service to the DID document | ||
// BUG: https://github.com/TBD54566975/web5-kt/issues/310 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove once bug is fixed
// add a service to the DID document | ||
// BUG: https://github.com/TBD54566975/web5-kt/issues/310 | ||
if(myBearerDid.document.service == null){ | ||
// myBearerDid.document.service = mutableListOf(serviceToAdd); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uncomment once bug is fixed
// myBearerDid.document.service = mutableListOf(serviceToAdd); | ||
} | ||
else { | ||
// myBearerDid.document.service.add(serviceToAdd) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uncomment once bug is fixed
|
||
internal class HowToUpdateDidTest { | ||
@Test | ||
@Disabled |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove once bug is fixed
β Deploy Preview for tbd-website-developer-new ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
merging the JS guide. will hold off on Kotlin guide until TBD54566975/web5-kt#310 is fixed |
What type of PR is this? (check all applicable)
Description
New guide on how to Update a DID
Blocked
The Kotlin snippets are blocked by TBD54566975/web5-kt#310