mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 19:11:56 +02:00
25 lines
637 B
JavaScript
25 lines
637 B
JavaScript
/* eslint-disable
|
|
max-len,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
let UniversityController
|
|
|
|
export default UniversityController = {
|
|
getPage(req, res, next) {
|
|
const url =
|
|
req.url != null ? req.url.toLowerCase().replace('.html', '') : undefined
|
|
return res.redirect(`/i${url}`)
|
|
},
|
|
|
|
getIndexPage(req, res) {
|
|
return res.redirect('/i/university')
|
|
},
|
|
}
|