-
Notifications
You must be signed in to change notification settings - Fork 27
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
CORE-20731: Implement DeleteUser endpoint #6224
CORE-20731: Implement DeleteUser endpoint #6224
Conversation
Jenkins build for PR 6224 build 6 Build Successful: |
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.
Overall, looks fine to me - one minor remark posted.
* @param loginName The login name of the user to be deleted. | ||
* @param user The user to be published. | ||
*/ | ||
fun publishDeletedUser(loginName: String, user: AvroUser?) |
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.
I wonder if we ever going to pass a non-null AvroUser
to this method?
If not, it would probably make more sense:
fun publishDeletedUser(loginName: String, user: AvroUser?) | |
fun publishDeletedUser(loginName: String) |
|
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.
LGTM
corda-api changes: corda/corda-api#1663
e2e-test changes: https://github.com/corda/corda-e2e-tests/pull/663