Skip to content

Commit 3bf54c4

Browse files
committed
Merge branch 'develop' of https://github.com/vivekbopaliya/p5.js-web-editor into feat/privatesketch
2 parents 907c057 + 755897e commit 3bf54c4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Issues and Pull Requests categorized under the PATCH or MINOR Release Milestones
3838

3939
We will aim to deploy on a 1-2 month basis. Here are some dates we’re working towards:
4040

41-
2.11.0 MINOR Release: By January 16, 2023
41+
2.12.0 MINOR Release: By February 27, 2024
4242

4343
[You can read more about Semantic Versioning and the differences between a MINOR and PATCH release](https://semver.org/).
4444

server/controllers/user.controller.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ const random = (done) => {
3030
};
3131

3232
export function createUser(req, res, next) {
33-
const { username, email } = req.body;
34-
const { password } = req.body;
33+
const { username, email, password } = req.body;
3534
const emailLowerCase = email.toLowerCase();
3635
const EMAIL_VERIFY_TOKEN_EXPIRY_TIME = Date.now() + 3600000 * 24; // 24 hours
3736
random((tokenError, token) => {

0 commit comments

Comments
 (0)