mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 22:29:01 +02:00
14 lines
482 B
CoffeeScript
14 lines
482 B
CoffeeScript
SecurityManager = require('../../managers/SecurityManager')
|
|
AuthenticationController = require('../Authentication/AuthenticationController')
|
|
ProjectUploadController = require "./ProjectUploadController"
|
|
|
|
module.exports =
|
|
apply: (app) ->
|
|
app.post '/project/new/upload',
|
|
AuthenticationController.requireLogin(),
|
|
ProjectUploadController.uploadProject
|
|
app.post '/Project/:Project_id/upload',
|
|
SecurityManager.requestCanModifyProject,
|
|
ProjectUploadController.uploadFile
|
|
|