mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
no issue - move password hashing and password comparison to lib/security/password - added two unit test - FYI: password hashing takes ~100ms - we could probably mock password hashing in certain cases when unit testing
23 lines
356 B
JavaScript
23 lines
356 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get url() {
|
|
return require('./url');
|
|
},
|
|
|
|
get tokens() {
|
|
return require('./tokens');
|
|
},
|
|
|
|
get string() {
|
|
return require('./string');
|
|
},
|
|
|
|
get identifier() {
|
|
return require('./identifier');
|
|
},
|
|
|
|
get password() {
|
|
return require('./password');
|
|
}
|
|
};
|