0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00

Rename cleanup

This commit is contained in:
Juan Carlos Picado 2017-01-22 22:23:30 +01:00
parent 674057b1af
commit 6c6646873c

View file

@ -15,19 +15,19 @@ function HTPasswd(config, stuff) {
self._logger = stuff.logger
// sinopia main config object
self._sinopia_config = stuff.config
self._verdaccio_config = stuff.config
// all this "sinopia_config" stuff is for b/w compatibility only
self._maxusers = self._config.max_users
if (!self._maxusers) self._maxusers = self._sinopia_config.max_users
if (!self._maxusers) self._maxusers = self._verdaccio_config.max_users
// set maxusers to Infinity if not specified
if (!self._maxusers) self._maxusers = Infinity
self._last_time = null
var file = self._config.file
if (!file) file = self._sinopia_config.users_file
if (!file) file = self._verdaccio_config.users_file
if (!file) throw new Error('should specify "file" in config')
self._path = Path.resolve(Path.dirname(self._sinopia_config.self_path), file)
self._path = Path.resolve(Path.dirname(self._verdaccio_config.self_path), file)
return self
}