mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
- This is super specific code relating only to validating passwords. - It's needed as a shared validator as we use other funnels to help people setup Ghost on Pro, but currently it's hard-baked into Ghost - It's also not the greatest code. It'd be nice to be able to rework it and know that would automatically update everywhere passwords are set
4 lines
97 B
JavaScript
4 lines
97 B
JavaScript
module.exports = {
|
|
validate: require('./validate'),
|
|
validator: require('./validator')
|
|
};
|