Skip to content

Commit

Permalink
Fix hid.HYdra#createCustomerAccount method
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Jan 15, 2020
1 parent d0b5409 commit adbcdfc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ trait Account {
}

Map createCustomerAccount(Map input = [:], def customerId) {
return createCustomerAccount(input + [customerId: customerId])
input.remove('accountId')
return putCustomerAccount(input + [customerId: customerId])
}

Map updateCustomerAccount(Map input = [:], def accountId) {
Expand Down

0 comments on commit adbcdfc

Please sign in to comment.