feat(core): import template (#8000)

This commit is contained in:
EYHN
2024-08-29 04:01:35 +00:00
parent 4ec45a247e
commit b96ad57568
67 changed files with 1835 additions and 974 deletions

View File

@@ -17,6 +17,12 @@ export class WorkspaceList extends Entity {
.flat()
.map(isLoadings => isLoadings.some(isLoading => isLoading));
workspace$(id: string) {
return this.workspaces$.map(workspaces =>
workspaces.find(workspace => workspace.id === id)
);
}
constructor(private readonly providers: WorkspaceFlavourProvider[]) {
super();
}