In reviewing a colleague's code, you note the following code in the dialog flow which takes user input and replaces the words "authorized user" or "auth user" with "AU" before then calling the intent resolution in the dialog flow with the altered string.
"${utterance.value?replace('authorized user|auth user', 'AU','r')}"
Why would your colleague have done this?