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.

wizardDetectorFilterGroup.js 769B

12345678910111213141516171819202122232425262728293031
  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 a Port Detector. It executes the auto-detection of the port
  10. * by the ownCloud server, if requirements are met.
  11. *
  12. * @constructor
  13. */
  14. var WizardDetectorFilterGroup = OCA.LDAP.Wizard.WizardDetectorFilterSimpleRequestAbstract.subClass({
  15. init: function() {
  16. this.setTrigger([
  17. 'ldap_groupfilter_groups',
  18. 'ldap_groupfilter_objectclass'
  19. ]);
  20. this.setTargetKey('ldap_group_filter');
  21. this.wizardMethod = 'getGroupFilter';
  22. }
  23. });
  24. OCA.LDAP.Wizard.WizardDetectorFilterGroup = WizardDetectorFilterGroup;
  25. })();