mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-25 18:02:11 -05:00
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
exports.getContact = function(req, res) {
|
|
res.render('contact', {
|
|
title: 'Contact',
|
|
user: req.user,
|
|
messages: req.flash('messages')
|
|
});
|
|
};
|
|
|
|
exports.postContact = function(req, res) {
|
|
|
|
}; |