feat(server): doc model (#9834)

close CLOUD-104
This commit is contained in:
fengmk2
2025-02-06 02:50:27 +00:00
parent 077a1b38ac
commit b40f007ccf
5 changed files with 1087 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import {
import { ModuleRef } from '@nestjs/core';
import { ApplyType } from '../base';
import { DocModel } from './doc';
import { FeatureModel } from './feature';
import { PageModel } from './page';
import { MODELS_SYMBOL } from './provider';
@@ -26,6 +27,7 @@ const MODELS = {
page: PageModel,
userFeature: UserFeatureModel,
workspaceFeature: WorkspaceFeatureModel,
doc: DocModel,
};
type ModelsType = {
@@ -78,6 +80,7 @@ const ModelsSymbolProvider: ExistingProvider = {
export class ModelsModule {}
export * from './common';
export * from './doc';
export * from './feature';
export * from './page';
export * from './session';