aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/Config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/Config.ts')
-rw-r--r--packages/shared/src/stores/Config.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/shared/src/stores/Config.ts b/packages/shared/src/stores/Config.ts
index 1d98a33..1d97e7d 100644
--- a/packages/shared/src/stores/Config.ts
+++ b/packages/shared/src/stores/Config.ts
@@ -22,7 +22,12 @@ import { Instance, types, SnapshotIn, SnapshotOut } from 'mobx-state-tree';
22 22
23import { themeSource } from '../schemas'; 23import { themeSource } from '../schemas';
24 24
25import { profile } from './Profile';
26import { service } from './Service';
27
25export const config = types.model('Config', { 28export const config = types.model('Config', {
29 profiles: types.array(profile),
30 services: types.array(service),
26 themeSource: types.optional(types.enumeration(themeSource.options), 'system'), 31 themeSource: types.optional(types.enumeration(themeSource.options), 'system'),
27}); 32});
28 33