feat(server): workspace model (#9714)

This commit is contained in:
fengmk2
2025-01-17 06:16:49 +00:00
parent 85b07a5de0
commit 5c934c64aa
5 changed files with 1595 additions and 0 deletions

View File

@@ -12,12 +12,14 @@ import { MODELS_SYMBOL } from './provider';
import { SessionModel } from './session';
import { UserModel } from './user';
import { VerificationTokenModel } from './verification-token';
import { WorkspaceModel } from './workspace';
const MODELS = {
user: UserModel,
session: SessionModel,
verificationToken: VerificationTokenModel,
feature: FeatureModel,
workspace: WorkspaceModel,
};
type ModelsType = {
@@ -73,3 +75,4 @@ export * from './feature';
export * from './session';
export * from './user';
export * from './verification-token';
export * from './workspace';