mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
20 lines
958 B
CoffeeScript
20 lines
958 B
CoffeeScript
|
|
||
|
TemplatesWebController = require("./TemplatesWebController")
|
||
|
middleWear = require("./TemplatesMiddlewear")
|
||
|
|
||
|
module.exports =
|
||
|
apply: (app)->
|
||
|
|
||
|
app.get "/templates", middleWear.insert_templates_user_id, TemplatesWebController.renderTemplatesIndexPage
|
||
|
app.get "/templates/user/:user_id", TemplatesWebController.renderTemplatesIndexPage
|
||
|
|
||
|
app.get "/templates/:tag_or_template_id", middleWear.id_or_tag_parse, middleWear.insert_templates_user_id, TemplatesWebController.tagOrCanonicalPage
|
||
|
app.get "/templates/user/:user_id/:tag_or_template_id", middleWear.id_or_tag_parse, TemplatesWebController.tagOrCanonicalPage
|
||
|
|
||
|
app.get "/templates/:tag_name/:template_name", middleWear.insert_templates_user_id, TemplatesWebController.renerTemplateInTag
|
||
|
app.get "/templates/user/:user_id/:tag_name/:template_name", TemplatesWebController.renerTemplateInTag
|
||
|
|
||
|
app.get "/templates/:template_id/v/:version/:file_type", TemplatesWebController.proxyToTemplatesApi
|
||
|
|
||
|
|