default for userSensitiveFields should be an array not a string. (#3599)

This commit is contained in:
Arthur Cinader
2017-03-05 09:06:45 -08:00
committed by GitHub
parent 8d802b9461
commit 1d8edd73c3

View File

@@ -178,7 +178,7 @@ export default {
},
"userSensitiveFields": {
help: "Personally identifiable information fields in the user table the should be removed for non-authorized users.",
default: "email"
default: ["email"]
},
"sessionLength": {
env: "PARSE_SERVER_SESSION_LENGTH",