🩹 backend,oo: small fixes, related to instance id (#525)

This commit is contained in:
Eric Doughty-Papassideris
2024-09-16 17:32:34 +02:00
parent ee63becdbb
commit b8814c0968
6 changed files with 63 additions and 9 deletions
@@ -960,7 +960,8 @@ export class DocumentsService {
* @param id DriveFile ID of the document to begin editing
* @param editorApplicationId Editor/Application/Plugin specific identifier
* @param appInstanceId For that `editorApplicationId` a unique identifier
* when multiple instances are running. Unused today.
* when multiple instances are running. Unused today - would need a mapping
* from `appInstanceId` to server host.
* @param context
* @returns An object in the format `{}` with the unique identifier for the
* editing session
@@ -115,6 +115,7 @@ export const beginEditingSchema = {
type: "object",
properties: {
editorApplicationId: { type: "string" },
appInstanceId: { type: "string" },
},
required: ["editorApplicationId"],
},