removed arguments from config.update assignments
This commit is contained in:
parent
25acd0aed3
commit
fb48f8b1fe
1 changed files with 4 additions and 4 deletions
8
index.js
8
index.js
|
@ -15,10 +15,10 @@ const siteConfig = require('./config/siteConfig.js');
|
||||||
const slackConfig = require('./config/slackConfig.js');
|
const slackConfig = require('./config/slackConfig.js');
|
||||||
|
|
||||||
function Server () {
|
function Server () {
|
||||||
this.configureLogger = loggerConfig.update(userConfig);
|
this.configureLogger = loggerConfig.update;
|
||||||
this.configureMysql = mysqlConfig.update(userConfig);
|
this.configureMysql = mysqlConfig.update;
|
||||||
this.configureSite = siteConfig.update(userConfig);
|
this.configureSite = siteConfig.update;
|
||||||
this.configureSlack = slackConfig.update(userConfig);
|
this.configureSlack = slackConfig.update;
|
||||||
this.configureModels = () => {
|
this.configureModels = () => {
|
||||||
logger.debug('here is where you could add/overwrite the default models')
|
logger.debug('here is where you could add/overwrite the default models')
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue