[feature] Rename /coauthoring/command to /command

This commit is contained in:
Sergey Konovalov
2024-10-04 18:01:21 +03:00
parent 859e12bda1
commit ab1eb6de6e

View File

@ -181,7 +181,7 @@ docsCoServer.install(server, () => {
app.get('/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.post('/command', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer);
app.get('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convertXml);
app.post('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convertXml);