Skip to content

Commit

Permalink
Fixed issue with unverified emails
Browse files Browse the repository at this point in the history
  • Loading branch information
lumandra committed Mar 11, 2024
1 parent ee4d561 commit 6709cb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ Object.assign(parseConfig, {
cloud: "./cloud/main",
databaseURI: URL_DB,
maxUploadSize: MAX_UPLOAD_SIZE,
verifyUserEmails: VERIFY_USER_EMAIL,
preventLoginWithUnverifiedEmail: PREVENT_LOGIN_WITH_UNVERIFIED_EMAIL,

verifyUserEmails: JSON.parse(VERIFY_USER_EMAIL),
preventLoginWithUnverifiedEmail: JSON.parse(PREVENT_LOGIN_WITH_UNVERIFIED_EMAIL),
serverURL: URL_SERVER,
publicServerURL: URL_SERVER,

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chisel-parse-server",
"version": "0.7.18",
"version": "0.7.20",
"description": "Parse Server setup for Chisel CMS",
"author": "Beach.io <beach.io>",
"license": "MIT",
Expand Down

0 comments on commit 6709cb7

Please sign in to comment.