mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
[feature] Add alias "command" to "CommandService.ashx"
This commit is contained in:
@ -180,8 +180,8 @@ docsCoServer.install(server, () => {
|
||||
let forms = multer();
|
||||
|
||||
app.get('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer);
|
||||
app.post('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser,
|
||||
docsCoServer.commandFromServer);
|
||||
app.post('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer);
|
||||
app.post('/coauthoring/command', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer);
|
||||
|
||||
app.get('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convertXml);
|
||||
app.post('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convertXml);
|
||||
|
||||
Reference in New Issue
Block a user