Lib: Add verified field to User schema

This commit is contained in:
2025-03-15 00:19:35 +01:00
parent 62f4d211ac
commit e46bdc60bd

View File

@ -11,6 +11,7 @@ export interface Graphic {
export interface User {
id: string;
verified: boolean;
username: string;
firstname: string;
email?: string;