mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
feat: Add full name to the user signup form (#1534)
This commit is contained in:
@@ -26,7 +26,8 @@ export default {
|
||||
const fetchPromise = new Promise((resolve, reject) => {
|
||||
axios
|
||||
.post(urlData.url, {
|
||||
account_name: creds.name,
|
||||
account_name: creds.accountName.trim(),
|
||||
user_full_name: creds.fullName.trim(),
|
||||
email: creds.email,
|
||||
})
|
||||
.then(response => {
|
||||
|
||||
Reference in New Issue
Block a user