File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Issues and Pull Requests categorized under the PATCH or MINOR Release Milestones
38
38
39
39
We will aim to deploy on a 1-2 month basis. Here are some dates we’re working towards:
40
40
41
- 2.11 .0 MINOR Release: By January 16, 2023
41
+ 2.12 .0 MINOR Release: By February 27, 2024
42
42
43
43
[ You can read more about Semantic Versioning and the differences between a MINOR and PATCH release] ( https://semver.org/ ) .
44
44
Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ const random = (done) => {
30
30
} ;
31
31
32
32
export function createUser ( req , res , next ) {
33
- const { username, email } = req . body ;
34
- const { password } = req . body ;
33
+ const { username, email, password } = req . body ;
35
34
const emailLowerCase = email . toLowerCase ( ) ;
36
35
const EMAIL_VERIFY_TOKEN_EXPIRY_TIME = Date . now ( ) + 3600000 * 24 ; // 24 hours
37
36
random ( ( tokenError , token ) => {
You can’t perform that action at this time.
0 commit comments