2022-01-11 13:51:48 +00:00
|
|
|
import Model from '@nozbe/watermelondb/Model';
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
export interface IServer {
|
|
|
|
name: string;
|
|
|
|
iconURL: string;
|
|
|
|
useRealName: boolean;
|
|
|
|
FileUpload_MediaTypeWhiteList: string;
|
|
|
|
FileUpload_MaxFileSize: number;
|
|
|
|
roomsUpdatedAt: Date;
|
|
|
|
version: string;
|
|
|
|
lastLocalAuthenticatedSession: Date;
|
|
|
|
autoLock: boolean;
|
|
|
|
autoLockTime: number | null;
|
|
|
|
biometry: boolean | null;
|
|
|
|
uniqueID: string;
|
|
|
|
enterpriseModules: string;
|
|
|
|
E2E_Enable: boolean;
|
|
|
|
}
|
2022-01-11 13:51:48 +00:00
|
|
|
|
|
|
|
export type TServerModel = IServer & Model;
|