feat(server): add settings model (#10755)

close CLOUD-166
This commit is contained in:
fengmk2
2025-03-18 00:41:21 +00:00
parent 3de7d85eea
commit 5dcbae6f86
5 changed files with 176 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ import { HistoryModel } from './history';
import { NotificationModel } from './notification';
import { MODELS_SYMBOL } from './provider';
import { SessionModel } from './session';
import { SettingsModel } from './settings';
import { UserModel } from './user';
import { UserDocModel } from './user-doc';
import { UserFeatureModel } from './user-feature';
@@ -36,6 +37,7 @@ const MODELS = {
docUser: DocUserModel,
history: HistoryModel,
notification: NotificationModel,
settings: SettingsModel,
};
type ModelsType = {
@@ -94,6 +96,7 @@ export * from './feature';
export * from './history';
export * from './notification';
export * from './session';
export * from './settings';
export * from './user';
export * from './user-doc';
export * from './user-feature';