mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 03:59:16 +00:00
8d8891c5bc
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
24 lines
545 B
JavaScript
24 lines
545 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2015 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
OCA = OCA || {};
|
|
|
|
(function() {
|
|
|
|
/**
|
|
* @classdesc let's the wizard backend count the available users
|
|
*
|
|
* @constructor
|
|
*/
|
|
var WizardDetectorUserCount = OCA.LDAP.Wizard.WizardDetectorFilterSimpleRequestAbstract.subClass({
|
|
init: function() {
|
|
this.setTargetKey('ldap_user_count');
|
|
this.wizardMethod = 'countUsers';
|
|
this.runsOnRequest = true;
|
|
}
|
|
});
|
|
|
|
OCA.LDAP.Wizard.WizardDetectorUserCount = WizardDetectorUserCount;
|
|
})();
|