feat: /titles page implementation with cursor pagination

This commit is contained in:
nihonium 2025-11-19 10:54:52 +03:00
parent a515769823
commit 397d2bcf70
Signed by: nihonium
GPG key ID: 0251623741027CFC
37 changed files with 797 additions and 1247 deletions

View file

@ -6,11 +6,11 @@ export type User = {
/**
* Unique user ID (primary key)
*/
id: number;
id?: number;
/**
* ID of the user avatar (references images table)
*/
avatar_id?: number | null;
avatar_id?: number;
/**
* User email
*/