|
@@ -28,7 +28,6 @@ import AttachmentService from '../service/attachment';
|
|
|
import { configManager as configManagerSingletonInstance } from '../service/config-manager';
|
|
import { configManager as configManagerSingletonInstance } from '../service/config-manager';
|
|
|
import { G2GTransferPusherService, G2GTransferReceiverService } from '../service/g2g-transfer';
|
|
import { G2GTransferPusherService, G2GTransferReceiverService } from '../service/g2g-transfer';
|
|
|
import { InstallerService } from '../service/installer';
|
|
import { InstallerService } from '../service/installer';
|
|
|
-import LdapService from '../service/ldap';
|
|
|
|
|
import PageService from '../service/page';
|
|
import PageService from '../service/page';
|
|
|
import PageGrantService from '../service/page-grant';
|
|
import PageGrantService from '../service/page-grant';
|
|
|
import PageOperationService from '../service/page-operation';
|
|
import PageOperationService from '../service/page-operation';
|
|
@@ -87,7 +86,6 @@ function Crowi() {
|
|
|
this.xss = new Xss();
|
|
this.xss = new Xss();
|
|
|
this.questionnaireService = null;
|
|
this.questionnaireService = null;
|
|
|
this.questionnaireCronService = null;
|
|
this.questionnaireCronService = null;
|
|
|
- this.ldapService = null;
|
|
|
|
|
|
|
|
|
|
this.tokens = null;
|
|
this.tokens = null;
|
|
|
|
|
|
|
@@ -151,7 +149,6 @@ Crowi.prototype.init = async function() {
|
|
|
this.setupCommentService(),
|
|
this.setupCommentService(),
|
|
|
this.setupSyncPageStatusService(),
|
|
this.setupSyncPageStatusService(),
|
|
|
this.setupQuestionnaireService(),
|
|
this.setupQuestionnaireService(),
|
|
|
- this.setupLdapService(),
|
|
|
|
|
this.setUpCustomize(), // depends on pluginService
|
|
this.setUpCustomize(), // depends on pluginService
|
|
|
]);
|
|
]);
|
|
|
|
|
|
|
@@ -323,10 +320,6 @@ Crowi.prototype.setupQuestionnaireService = function() {
|
|
|
this.questionnaireService = new QuestionnaireService(this);
|
|
this.questionnaireService = new QuestionnaireService(this);
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-Crowi.prototype.setupLdapService = function() {
|
|
|
|
|
- this.ldapService = new LdapService(this);
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
Crowi.prototype.scanRuntimeVersions = async function() {
|
|
Crowi.prototype.scanRuntimeVersions = async function() {
|
|
|
const self = this;
|
|
const self = this;
|
|
|
|
|
|