feat: titles page

This commit is contained in:
nihonium 2025-11-18 05:15:38 +03:00
parent 6836cfa057
commit b976c35b8e
Signed by untrusted user: nihonium
GPG key ID: 0251623741027CFC
44 changed files with 1539 additions and 107 deletions

View file

@ -6,7 +6,7 @@ export type User = {
/**
* Unique user ID (primary key)
*/
id?: number;
id: number;
/**
* ID of the user avatar (references images table)
*/
@ -30,6 +30,6 @@ export type User = {
/**
* Timestamp when the user was created
*/
creation_date: string;
creation_date?: string;
};