mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
✌️
This commit is contained in:
parent
ca92481d5f
commit
f441d7a4af
1 changed files with 2 additions and 3 deletions
|
@ -37,7 +37,7 @@ export default User;
|
|||
type IUserBase = {
|
||||
_id: mongo.ObjectID;
|
||||
createdAt: Date;
|
||||
deletedAt: Date;
|
||||
deletedAt?: Date;
|
||||
followersCount: number;
|
||||
followingCount: number;
|
||||
name?: string;
|
||||
|
@ -51,7 +51,6 @@ type IUserBase = {
|
|||
description: string;
|
||||
pinnedNoteId: mongo.ObjectID;
|
||||
isSuspended: boolean;
|
||||
keywords: string[];
|
||||
host: string;
|
||||
};
|
||||
|
||||
|
@ -81,7 +80,7 @@ export interface ILocalUser extends IUserBase {
|
|||
isPro: boolean;
|
||||
twoFactorSecret: string;
|
||||
twoFactorEnabled: boolean;
|
||||
twoFactorTempSecret: string;
|
||||
twoFactorTempSecret?: string;
|
||||
clientSettings: any;
|
||||
settings: any;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue