wizardDetectorClearGroupMappings.js 780 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Copyright (c) 2015, Arthur Schiwon <blizzz@owncloud.com>
  3. * This file is licensed under the Affero General Public License version 3 or later.
  4. * See the COPYING-README file.
  5. */
  6. OCA = OCA || {};
  7. (function() {
  8. /**
  9. * @classdesc requests clearing of user mappings
  10. *
  11. * @constructor
  12. */
  13. var WizardDetectorClearGroupMappings = OCA.LDAP.Wizard.WizardDetectorTestAbstract.subClass({
  14. /** @inheritdoc */
  15. init: function() {
  16. // given, it is not a configuration key
  17. this.setTargetKey('ldap_action_clear_group_mappings');
  18. this.testName = 'ClearMappings';
  19. this.isLegacy = true;
  20. this.legacyDestination = 'clearMappings.php';
  21. this.runsOnRequest = true;
  22. }
  23. });
  24. OCA.LDAP.Wizard.WizardDetectorClearGroupMappings = WizardDetectorClearGroupMappings;
  25. })();