ulsdevteam / lcsu

0 stars 0 forks source link

Verify a Tray or "Trays" #19

Open bdgregg opened 5 years ago

bdgregg commented 5 years ago

When "Verify a Tray" is selected, can the column for "Modified User" be changed to "Modified By" and instead of the user's username being displayed can it be their full name? I'm not sure if we are capturing the full name, if not then username is fine.

edensung25 commented 5 years ago

reference c9f216464d94cf9c5a703c0721ffc24bc046896d. About the full name, there is no users' full name in environment parameters, should I create a new column in users table that letting admin to edit users' full name?

ctgraham commented 5 years ago

~With the Shibboleth authentication, Shibboleth can optionally provide additional user information via SAML. (This can also be configured with Apache's mod_ldap, but we won't bother for development.) Please add an optional configuration parameter to reference the user's display name. In our environment, this will be the concatenation of the environment variables "HTTP_GIVENNAME" + "HTTP_SN". In other environments, this might be a single environment variable "HTTP_DISPLAYNAME". If this optional configuration is present, replace the display of the userid with "Display Name (userid)".~

To fetch user information for users other than the current user, we would need to add in a LDAP connection. Since this is not a high priority, this is deferred.