christmas/routes/supported-sites/index.js

12 lines
241 B
JavaScript
Raw Normal View History

2020-11-05 14:42:24 -08:00
const express = require('express')
module.exports = () => {
const router = express.Router()
router.get('/', async (req, res) => {
2021-12-03 08:13:43 -08:00
res.render('supported-sites', { title: _CC.lang('SUPPORTED_SITES_HEADER') })
2020-11-05 14:42:24 -08:00
})
return router
2020-11-08 13:54:08 -08:00
}