feat: add multiple way to show collections and links

This commit is contained in:
Sonny
2025-08-21 02:27:51 +02:00
parent 18fe979069
commit 4ef2b639b6
41 changed files with 785 additions and 164 deletions

View File

@@ -1,3 +1,5 @@
import { DisplayPreferences } from '#shared/types/index';
type CommonBase = {
id: number;
createdAt: string;
@@ -10,6 +12,7 @@ export type User = CommonBase & {
avatarUrl: string;
isAdmin: boolean;
lastSeenAt: string;
displayPreferences: DisplayPreferences;
};
export type PublicUser = Omit<User, 'email'>;