(parent: string, type: string, name: string, content?: any)
| 293 | return this.spaceAdapters.flatMap(f => f.allPaths(type)); |
| 294 | } |
| 295 | public createItemAtPath (parent: string, type: string, name: string, content?: any) :Promise<string> { |
| 296 | return this.adapterForPath(parent).createItemAtPath(parent, type, name, content); |
| 297 | } |
| 298 | public renamePath (oldPath: string, newPath: string) { |
| 299 | return this.adapterForPath(oldPath).renamePath(oldPath, newPath); |
| 300 | } |
nothing calls this directly
no test coverage detected