Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/email/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const sendMail = async (to, subject, html, text) => {
* @param {string} resetPasswordToken temporary token for the reset password link
*/
const sendForgotPassword = async (userEmail, resetPasswordToken) => {
const emailResetLink = `https://healthcarerollcall.org/reset/${resetPasswordToken}`;
const emailResetLink = `https://healthcare-rollcall.netlify.com/reset/${resetPasswordToken}`;
await sendMail(
userEmail,
"Password Reset - Healthcare Roll Call",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ nunjucks.configure('mail_templates', { autoescape: true });

// Third-party middleware
app.use(requestId());
app.use(morgan('tiny'));
app.use(morgan('common'));
app.use(cors());
app.use(helmet());
app.use(express.json());
Expand Down