generator-roosevelt
Version:
🏭🧸 Command line application for creating Roosevelt apps.
8 lines (7 loc) • 314 B
JavaScript
module.exports = async (req, res) => {
const model = await require('models/global')(req, res)
model.content.hello = 'Hi! I\'m a variable trickling down through the MVC structure!'
model.content.picLabel = 'Here\'s a silly picture of Teddy Roosevelt:'
model.teddyPath = '/images/teddy.jpg'
return model
}