renamed configureSiteDetails() -> configureSite()

This commit is contained in:
bill bittner 2018-04-02 10:11:49 -07:00
parent 8ef29f2d68
commit b445b54aa4
2 changed files with 3 additions and 9 deletions

File diff suppressed because one or more lines are too long

View file

@ -21,15 +21,12 @@ function Server () {
this.configureMysql = (userConfig) => {
mysqlConfig.update(userConfig);
};
this.configureSiteDetails = (userConfig) => {
this.configureSite = (userConfig) => {
siteConfig.update(userConfig);
};
this.configureSlack = (userConfig) => {
slackConfig.update(userConfig);
};
this.configureClientBundle = () => {
logger.debug('configure the client here by passing in the bundle and configuring it, or better yet: taking in the components to use dynamically from here.');
};
this.configureModels = () => {
logger.debug('here is where you could add/overwrite the default models')
};