mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
exports.getContact = function(req, res) {
|
|
res.render('contact', {
|
|
title: 'Contact',
|
|
user: req.user
|
|
});
|
|
};
|
|
|
|
exports.postContact = function(req, res) {
|
|
|
|
}; |