Report the user's name and company to Marketo
Also fixes the API to report the other changes (username and email) as well
This commit is contained in:
parent
860942ece1
commit
1a61ef4e04
8 changed files with 78 additions and 24 deletions
|
@ -337,7 +337,8 @@ class User(BaseModel):
|
|||
enabled = BooleanField(default=True)
|
||||
invoice_email_address = CharField(null=True, index=True)
|
||||
|
||||
name = CharField(null=True)
|
||||
given_name = CharField(null=True)
|
||||
family_name = CharField(null=True)
|
||||
company = CharField(null=True)
|
||||
|
||||
def delete_instance(self, recursive=False, delete_nullable=False):
|
||||
|
|
Reference in a new issue