Add note field and external identifier to customers (#2605)

This commit is contained in:
Richard Schreiber
2022-04-29 14:43:08 +02:00
committed by GitHub
parent 657cdd07ab
commit edff7b8717
10 changed files with 71 additions and 14 deletions

View File

@@ -36,6 +36,7 @@ def customer(organizer, event):
TEST_CUSTOMER_RES = {
"identifier": "8WSAJCJ",
"external_identifier": None,
"email": "foo@example.org",
"name": "Foo",
"name_parts": {
@@ -46,7 +47,8 @@ TEST_CUSTOMER_RES = {
"last_login": None,
"date_joined": "2021-04-06T13:44:22.809216Z",
"locale": "en",
"last_modified": "2021-04-06T13:44:22.809377Z"
"last_modified": "2021-04-06T13:44:22.809377Z",
"notes": None,
}