mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
827814175f
* Remove unused sixpack AB test * Remove unused sixpack AB test * Remove unused sixpackDomain global * Remove unused Sixpack file * Remove sixpack from frontend * Remove unused sixpack-client package GitOrigin-RevId: cdd4acf91cb045db93485f09dcb5ec63e43d01dc
27 lines
778 B
JavaScript
27 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')
|
|
}
|
|
}
|