generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/zms 1228 name of child textfield (#21)
* Add Child Name Textfield to Contact Form * Add customtextfield to contact form * Remove log file --------- Co-authored-by: Thomas Fink <[email protected]>
- Loading branch information
1 parent
e9421a3
commit 2d82e88
Showing
13 changed files
with
95 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -223,6 +223,7 @@ describe('Actions', () => { | |
name: 'Max', | ||
email: '[email protected]', | ||
telephone: '+1234567890', | ||
customTextfield: 'Smith', | ||
dataProtection: true | ||
} | ||
|
||
|
@@ -240,6 +241,7 @@ describe('Actions', () => { | |
familyName: 'Max', | ||
email: '[email protected]', | ||
telephone: '+1234567890', | ||
customTextfield: 'Smith', | ||
timestamp: 1589373217, | ||
processId: 111, | ||
authKey: 'abc' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,8 @@ describe('API actions', () => { | |
authKey: 'bbb', | ||
familyName: 'Musterman', | ||
email: '[email protected]', | ||
telephone: '' | ||
telephone: '', | ||
customTextfield: '' | ||
}) | ||
|
||
expect(fetch.mock.calls.length).toEqual(1); | ||
|
@@ -117,7 +118,8 @@ describe('API actions', () => { | |
"authKey": 'bbb', | ||
"familyName": 'Musterman', | ||
"email": '[email protected]', | ||
"telephone": '' | ||
"telephone": '', | ||
"customTextfield": '' | ||
})) | ||
}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -266,13 +266,15 @@ describe('Form data mutations', () => { | |
name: 'Max', | ||
email: '[email protected]', | ||
telephone: "123456789", | ||
customTextfield: "Smith", | ||
dataProtection: true | ||
}) | ||
|
||
expect(state.customer).toStrictEqual({ | ||
name: 'Max', | ||
email: '[email protected]', | ||
telephone: "123456789", | ||
customTextfield: "Smith", | ||
dataProtection: true | ||
}) | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
}, | ||
"data": { | ||
"$schema": "https://schema.berlin.de/queuemanagement/process.json", | ||
"amendment": "", | ||
"customTextfield": "", | ||
"appointments": [ | ||
{ | ||
"date": 0, | ||
|
@@ -35,7 +35,8 @@ | |
"email": "[email protected]", | ||
"emailSendCount": "0", | ||
"notificationsSendCount": "0", | ||
"telephone": "" | ||
"telephone": "", | ||
"customTextfield": "" | ||
} | ||
], | ||
"createIP": "", | ||
|
@@ -71,7 +72,8 @@ | |
"preferences": { | ||
"client": { | ||
"emailRequired": 0, | ||
"telephoneRequired": 0 | ||
"telephoneRequired": 0, | ||
"customTextfieldRequired": 0 | ||
}, | ||
"workstation": { | ||
"emergencyRefreshInterval": "5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters