Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

notification when a new user register ? #3226

Gouss ·
Hello,

I was wandering if there is a way to get a notification when a new user is added to the users' list?

I connected the QB user authentificator to our company LDAP so user can connect using their usual credentials.
The downside is that I can no longer create accounts / handle rights before they connect at least once.

I would like to know when a new user is effectivly added to the registered user list (or may be I can push user in the user list even if I use the LDAP but couldn't find a proper way).



Regards,
Gouss
  • replies 4
  • views 2169
  • stars 0
robinshen ADMIN ·
To solve this issue, you may query user info from LDAP side and call QB RESTful API to pre-populate them with appropriate permissions (to associate with appropriate QB groups with membership flag assignedLocally=true). For more information:
http://wiki.pmease.com/display/QB60/Interact+with+Users
http://wiki.pmease.com/display/QB60/Int ... emberships
Gouss ·
Hello Robinshen,

I tried to create users without password manually and seting the autenthificator to the LDAP hoping it would work but it did not (Perforce works that way when linked to LDAP, it was worth a try <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->)

from http://wiki.pmease.com/display/QB60/Interact+with+Users, in the "Create user" section, I see the following:

Edit tempfile.xml to do the following:
Remove the id element.
Change content of the name element to be robin.
Change content of password element to be 12345.
Remove attribute secret="hash" from the password element.


How can I manage their secret password? The idea is to avoid giving them a lot of password to remember (and of course I have no knowledge of their password).



Regards,
Gouss
robinshen ADMIN ·
Just use empty password for the entry, for instance:

<?xml version="1.0" encoding="UTF-8"?>

<com.pmease.quickbuild.model.User>
<name>robin</name>
<authenticator>ad</authenticator>
<pluginSettingDOMs/>
<password></password>
</com.pmease.quickbuild.model.User>
Gouss ·
Thank you for all the info Robinshen!


Regards,
Gouss