refactor(core): update RegisterPayloadMapper to include additional us… (#3076)

This commit is contained in:
Nagarjuna 2026-01-16 17:44:28 +05:30 committed by GitHub
parent 5c961c6937
commit 53c766b343
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -18,4 +18,6 @@ fun BeneficiaryPayload.toDto(): BeneficiaryCreatePayloadDto =
name = name,
accountNumber = accountNumber,
accountType = accountType,
transferLimit = transferLimit,
officeName = officeName,
)

View File

@ -19,4 +19,8 @@ fun RegisterPayload.toDto(): RegisterPayloadDto =
username = username,
email = email,
password = password,
authenticationMode = authenticationMode,
accountNumber = accountNumber,
middleName = middleName,
mobileNumber = mobileNumber,
)