Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding "recursive_groups" setting for authad-plugin in configuration-manager #2716

Merged
merged 1 commit into from Mar 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/plugins/authad/conf/default.php
Expand Up @@ -15,3 +15,4 @@
$conf['additional'] = '';
$conf['update_name'] = 0;
$conf['update_mail'] = 0;
$conf['recursive_groups'] = 0;
1 change: 1 addition & 0 deletions lib/plugins/authad/conf/metadata.php
Expand Up @@ -15,3 +15,4 @@
$meta['additional'] = array('string','_caution' => 'danger');
$meta['update_name'] = array('onoff','_caution' => 'danger');
$meta['update_mail'] = array('onoff','_caution' => 'danger');
$meta['recursive_groups'] = array('onoff','_caution' => 'danger');
1 change: 1 addition & 0 deletions lib/plugins/authad/lang/en/settings.php
Expand Up @@ -15,3 +15,4 @@
$lang['additional'] = 'A comma separated list of additional AD attributes to fetch from user data. Used by some plugins.';
$lang['update_name'] = 'Allow users to update their AD display name?';
$lang['update_mail'] = 'Allow users to update their email address?';
$lang['recursive_groups'] = 'Resolve nested groups to their respective members (slower).';