We have non-technical end-users who assign tasks to each other in the tasklist.
Lets assume a Camunda user has got “benny” as the ID and that is being typed in the tasklist assignee text input as shown here
Then the form is fetched and “benny” is displayed as the assignee. All is good.
If we instead had entered “Benny” with an uppercase B, the GET request http://serverhost/camunda/api/engine/engine/default/user?maxResults=1&id=Benny finds the user (i.e. it is case insensitive).
The problem is that the form is now disabled because some logic most likely doesn’t find the user “Benny”. The assignee box in tasklist is now displaying that user’s firstname and lastname instead of simply the ID.
The disabled form is causing some confusion with our tasklist end-users. Anything that can be done to make this case insensitive, or otherwise more user-friendly?
Thanks in advance