fix(auth): Remove reset password endpoint

This commit is contained in:
Mrugesh Mohapatra
2017-09-17 14:54:48 +05:30
parent 4c016216b9
commit 5e86b25a69
2 changed files with 2 additions and 45 deletions

View File

@@ -2,7 +2,7 @@ const isDev = process.env.NODE_ENV !== 'production';
const isBeta = !!process.env.BETA;
export function getEmailSender() {
return process.env.EMAIL_SENDER || 'team@freecodecamp.org';
return process.env.SES_MAIL_FROM || 'team@freecodecamp.org';
}
export function getPort() {