mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
5fc6d7dcb3
Improve GCP logging for web GitOrigin-RevId: b304c87a3fe46c29189f665eb3daf22c23d6eb8f
27 lines
776 B
JavaScript
27 lines
776 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('@overleaf/settings')
|
|
const logger = require('@overleaf/logger')
|
|
const Settings = require('@overleaf/settings')
|
|
|
|
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')
|
|
},
|
|
}
|