From cacd97fb4665284e325a4ee287152b1bf1b999d6 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 5 Jun 2015 11:09:31 +0200 Subject: [PATCH] LdapUserGroupBackend: Make default configuration providers public I'd like to access these when preparing a config form. refs #7343 --- .../Icinga/Authentication/UserGroup/LdapUserGroupBackend.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php index a51df856d..60b94ec27 100644 --- a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php +++ b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php @@ -598,7 +598,7 @@ class LdapUserGroupBackend /*extends LdapRepository*/ implements UserGroupBacken * * @return ConfigObject */ - protected function getOpenLdapDefaults() + public function getOpenLdapDefaults() { return new ConfigObject(array( 'group_class' => 'group', @@ -614,7 +614,7 @@ class LdapUserGroupBackend /*extends LdapRepository*/ implements UserGroupBacken * * @return ConfigObject */ - protected function getActiveDirectoryDefaults() + public function getActiveDirectoryDefaults() { return new ConfigObject(array( 'group_class' => 'group',