You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wizardDetectorClearUserMappings.js 776B

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 WizardDetectorClearUserMappings = OCA.LDAP.Wizard.WizardDetectorTestAbstract.subClass({
  14. /** @inheritdoc */
  15. init: function() {
  16. // given, it is not a configuration key
  17. this.setTargetKey('ldap_action_clear_user_mappings');
  18. this.testName = 'ClearMappings';
  19. this.isLegacy = true;
  20. this.legacyDestination = 'clearMappings.php';
  21. this.runsOnRequest = true;
  22. }
  23. });
  24. OCA.LDAP.Wizard.WizardDetectorClearUserMappings = WizardDetectorClearUserMappings;
  25. })();