apps/user_ldap/lib/Migration/UUIDFixGroup.php 1 location
|
@@ 32-37 (lines=6) @@
|
| 29 |
|
use OCA\User_LDAP\User_Proxy; |
| 30 |
|
use OCP\IConfig; |
| 31 |
|
|
| 32 |
|
class UUIDFixGroup extends UUIDFix { |
| 33 |
|
public function __construct(GroupMapping $mapper, LDAP $ldap, IConfig $config, Helper $helper) { |
| 34 |
|
$this->mapper = $mapper; |
| 35 |
|
$this->proxy = new User_Proxy($helper->getServerConfigurationPrefixes(true), $ldap, $config); |
| 36 |
|
} |
| 37 |
|
} |
| 38 |
|
|
apps/user_ldap/lib/Migration/UUIDFixUser.php 1 location
|
@@ 32-37 (lines=6) @@
|
| 29 |
|
use OCA\User_LDAP\Group_Proxy; |
| 30 |
|
use OCP\IConfig; |
| 31 |
|
|
| 32 |
|
class UUIDFixUser extends UUIDFix { |
| 33 |
|
public function __construct(UserMapping $mapper, LDAP $ldap, IConfig $config, Helper $helper) { |
| 34 |
|
$this->mapper = $mapper; |
| 35 |
|
$this->proxy = new Group_Proxy($helper->getServerConfigurationPrefixes(true), $ldap, $config); |
| 36 |
|
} |
| 37 |
|
} |
| 38 |
|
|