mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 22:50:46 +02:00
551298852f
Redirect old track changes marketing page to track changes learn wiki page GitOrigin-RevId: 890e7f746b71b8e5108e8209d55903f68adde1ea
29 lines
857 B
JavaScript
29 lines
857 B
JavaScript
/* eslint-disable
|
|
max-len,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
import HomeController from './HomeController.mjs'
|
|
|
|
import UniversityController from './UniversityController.mjs'
|
|
|
|
export default {
|
|
apply(webRouter) {
|
|
webRouter.get('/', HomeController.index)
|
|
webRouter.get('/home', HomeController.home)
|
|
|
|
webRouter.get(
|
|
'/planned_maintenance',
|
|
HomeController.externalPage('planned_maintenance', 'Planned Maintenance')
|
|
)
|
|
|
|
webRouter.get('/university', UniversityController.getIndexPage)
|
|
return webRouter.get('/university/*', UniversityController.getPage)
|
|
},
|
|
}
|