shwstppr commented on code in PR #10773: URL: https://github.com/apache/cloudstack/pull/10773#discussion_r2072949218
########## ui/src/views/AutogenView.vue: ########## @@ -1256,6 +1256,9 @@ export default { } var paramName = param.name var extractedParamName = paramName.replace('ids', '').replace('id', '').toLowerCase() + if (extractedParamName.endsWith('ory')) { + extractedParamName = extractedParamName.slice(0, -3) + 'orie' Review Comment: @Pearl1594 in that code later at ln 1266 we seem to be using the following, therefore I didn't use ories ``` const possibleName = 'list' + extractedParamName + 's' ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org