Show group memberships in a tooltip

This commit is contained in:
Manfred Hoffmann
2020-04-05 20:20:12 +02:00
committed by GitHub
parent 1ee17e995a
commit b442c52acb
39 changed files with 114 additions and 10 deletions

View File

@@ -251,3 +251,11 @@ define('TOTP_ISSUER', 'Kanboard');
// Comma separated list of fields to not synchronize when using external authentication providers
define('EXTERNAL_AUTH_EXCLUDE_FIELDS', 'username');
// Enable or disable displaying group-memberships in userlist (true by default)
define('SHOW_GROUP_MEMBERSHIPS_IN_USERLIST', true);
// Limit number of groups to display in userlist (The full list of group-memberships is always shown, ...
// ... when hovering the mouse over the group-icon of a given user!)
// If set to 0 ALL group-memberships will be listed (7 by default)
define('SHOW_GROUP_MEMBERSHIPS_IN_USERLIST_WITH_LIMIT', 7);