Closed
Description
According to #246, we can have app-setting after enable email verification,
but after I enable email verification as below, still can not get the app-settings menu.
{
...
verifyUserEmails: true,
preventLoginWithUnverifiedEmail: false,
appName: 'Sample App',
publicServerURL: `${serverBaseUrl}/${appId}/parse`,
emailAdapter: {
module: "simple-parse-smtp-adapter",
options: {
fromAddress: 'noreply@xxx.com',
user: 'noreply@xxx.com',
password: 'xxx',
host: 'smtp.zoho.com',
isSSL: true, //True or false if you are using ssl
port: 465, //SSL port or another port
emailField: 'username',
templates: {
//This template is used only for reset password email
resetPassword: {
//Path to your template
template: emailTemplatePath,
//Subject for this email
subject: 'Reset your password'
}
}
}
},
...
}
And it seems the app-setting is suspended according to parse-community/parse-server#1645
So is the app-setting already included(or will be included) in dashboard