* Switching resources or reconnecting after disconnection requires the column permissions of all data tables in the room
()
| 337 | * Switching resources or reconnecting after disconnection requires the column permissions of all data tables in the room |
| 338 | */ |
| 339 | loadFieldPermissionMap() { |
| 340 | const dstIds: string[] = []; |
| 341 | this.collaEngineMap.forEach((collaEngine) => { |
| 342 | if (collaEngine.resourceType !== ResourceType.Datasheet) { |
| 343 | return; |
| 344 | } |
| 345 | dstIds.push(collaEngine.resourceId); |
| 346 | }); |
| 347 | dstIds.length && this.store.dispatch(fetchFieldPermission(dstIds) as any); |
| 348 | } |
| 349 | |
| 350 | @errorCapture<RoomService>() |
| 351 | async checkVersion(resourceRevisions: IResourceRevision[] | null) { |
no test coverage detected