Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit edbe07d

Browse files
committed
Fix version error in helper.js
1 parent 7697670 commit edbe07d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

initializers/helper.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ helper.MAX_INT = 2147483647;
128128
/**
129129
* HASH KEY For Password
130130
*
131-
* @since 1.16
131+
* @since 1.23
132132
*/
133133
helper.PASSWORD_HASH_KEY = process.env.PASSWORD_HASH_KEY || 'default';
134134

@@ -1213,7 +1213,7 @@ helper.checkUserExists = function (handle, api, dbConnectionMap, callback) {
12131213
* Validate the given password value.
12141214
* @param {String} password - the password value.
12151215
* @returns {Object} - Return error if the given password is invalid.
1216-
* @since 1.16
1216+
* @since 1.23
12171217
*/
12181218
helper.validatePassword = function (password) {
12191219
var value = password.trim(),
@@ -1244,7 +1244,7 @@ helper.validatePassword = function (password) {
12441244
*
12451245
* @param {Array} terms - The terms.
12461246
* @returns {Boolean} true if all terms agreed otherwise false.
1247-
* @since 1.16
1247+
* @since 1.22
12481248
*/
12491249
helper.allTermsAgreed = function (terms) {
12501250
return _.every(terms, function (term) {

0 commit comments

Comments
 (0)