mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 08:34:53 +00:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
/*
|
|
* User Routes
|
|
*/
|
|
|
|
module.exports = function(app) {
|
|
|
|
app.get('/users/:name', function(req, res){
|
|
res.render('users/profile', {title: 'User profile'});
|
|
});
|
|
|
|
}; |