admin-lte-express
Version:
AdminLTE 2.3.2 with express and express-handlebars.
19 lines (17 loc) • 444 B
JavaScript
exports.prefix = '/mailbox';
//exports.before = function(request, response, next) { next() };
exports.index = function(request, response) {
response.render("mailbox/index", {
title: "Mailbox"
})
};
exports.compose = function(request, response) {
response.render("mailbox/compose", {
title: "Compose"
})
};
exports.readMail = function(request, response) {
response.render("mailbox/read-mail", {
title: "Read Mail"
})
};