upd: convertAccount now fetches info from the DB

This commit is contained in:
Mar0xy 2023-10-29 02:59:36 +01:00
parent 95bcfd8ef3
commit 549bcf70db
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
4 changed files with 59 additions and 29 deletions

View file

@ -2,6 +2,6 @@ namespace Entity {
export type Field = {
name: string
value: string
verified_at: string | null
verified_at?: string | null
}
}

View file

@ -3,5 +3,6 @@ namespace MisskeyEntity {
name: string;
value: string;
verified?: string;
verified_at?: string;
};
}