Forum Discussion
DougS
10 years agoKhoros Oracle
There is an option in the SSO admin to auto-suggest a username -- see the reference for the auto-generated username is here in the SSO configuration doc. I'm not sure it quite fits the bill as far as what you are looking for. If not, you might want to consider using LiQL to find any users with the same username:
<#assign query = "SELECT login FROM users WHERE login = '" + chosenLogin+ "'" /> <#assign resp = restadmin("2.0", "/search?q=" + query?url) />
It will do a search in the back-end that way and you won't have to do the lookup in an attempt/recover block, so it should perform better.
Related Content
- 3 years ago
- 2 years ago