Skip to content

Commit

Permalink
Merge pull request #5862 from spalger/rename/serverConfig
Browse files Browse the repository at this point in the history
[rename] Config -> config
  • Loading branch information
w33ble committed Jan 9, 2016
2 parents 3e727af + 6c1acd6 commit f5684d6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/server/config/__tests__/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var Config = require('../Config');
var Config = require('../config');
var expect = require('expect.js');
var _ = require('lodash');
var Joi = require('joi');
Expand Down Expand Up @@ -228,4 +228,3 @@ describe('lib/config/config', function () {

});
});

File renamed without changes.
2 changes: 1 addition & 1 deletion src/server/config/setup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = function (kbnServer) {
let Config = require('./Config');
let Config = require('./config');
let schema = require('./schema')();

kbnServer.config = new Config(schema, kbnServer.settings || {});
Expand Down

0 comments on commit f5684d6

Please sign in to comment.