Moved ‘authenticator’ module startup to console service

This commit is contained in:
emizzle 2018-10-02 13:59:24 +10:00 committed by Pascal Precht
parent feb59655cc
commit 25297027c8
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 1 additions and 1 deletions

View File

@ -144,6 +144,7 @@ class Engine {
logger: this.logger,
config: this.config
});
this.registerModule('authenticator');
}
codeRunnerService(_options) {
@ -230,7 +231,6 @@ class Engine {
webServerService() {
this.registerModule('webserver', {plugins: this.plugins});
this.registerModule('authenticator');
}
storageService(_options) {