aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/Migration/UUIDFixGroup.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/Migration/UUIDFixGroup.php')
-rw-r--r--apps/user_ldap/lib/Migration/UUIDFixGroup.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/Migration/UUIDFixGroup.php b/apps/user_ldap/lib/Migration/UUIDFixGroup.php
new file mode 100644
index 00000000000..3924c91e7ba
--- /dev/null
+++ b/apps/user_ldap/lib/Migration/UUIDFixGroup.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\User_LDAP\Migration;
+
+use OCA\User_LDAP\Group_Proxy;
+use OCA\User_LDAP\Mapping\GroupMapping;
+use OCP\AppFramework\Utility\ITimeFactory;
+
+class UUIDFixGroup extends UUIDFix {
+ public function __construct(ITimeFactory $time, GroupMapping $mapper, Group_Proxy $proxy) {
+ parent::__construct($time);
+ $this->mapper = $mapper;
+ $this->proxy = $proxy;
+ }
+}