mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
28 lines
778 B
JavaScript
28 lines
778 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
|
||
|
const settings = require('settings-sharelatex')
|
||
|
const logger = require('logger-sharelatex')
|
||
|
const Settings = require('settings-sharelatex')
|
||
|
|
||
|
module.exports = 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')
|
||
|
}
|
||
|
}
|