|
@@ -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 = {
|