Changes between Initial Version and Version 1 of Ticket #57731
- Timestamp:
- 02/16/2023 11:51:05 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57731
- Property Keywords needs-testing added
- Property Focuses administration template rest-api performance coding-standards removed
-
Property
Component
changed from
QuerytoUsers
-
Ticket #57731 – Description
initial v1 15 15 **If the email does not start with numeric digits**'''' 16 16 Case 1: 17 - Email: abc@email.com17 - Email: `abc@email.com` 18 18 - User exists with above email 19 19 - Works fine. … … 22 22 **If the email starts with numeric digits**'''' 23 23 Case 2: 24 - Email: 123abc@email.com24 - Email: `123abc@email.com` 25 25 - User exists with the above email 26 26 - Work fine. 27 27 28 28 Case 3: (INVALID RESULTS) 29 - Email: 123abc@email.com29 - Email: `123abc@email.com` 30 30 - User DOES NOT exist with the above email 31 31 - **Does not work as intended and returns the user data of the user with ID: 123, instead of returning 0 results**