Shun Miyazawa 3 лет назад
Родитель
Сommit
9096bf49ed
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      packages/app/src/interfaces/user.ts

+ 2 - 0
packages/app/src/interfaces/user.ts

@@ -1,5 +1,6 @@
 import { Ref } from './common';
 import { Ref } from './common';
 import { HasObjectId } from './has-object-id';
 import { HasObjectId } from './has-object-id';
+import { Lang } from './lang';
 
 
 export type IUser = {
 export type IUser = {
   name: string;
   name: string;
@@ -8,6 +9,7 @@ export type IUser = {
   password: string;
   password: string;
   imageUrlCached: string;
   imageUrlCached: string;
   admin: boolean;
   admin: boolean;
+  lang: Lang;
 }
 }
 
 
 export type IUserGroupRelation = {
 export type IUserGroupRelation = {