feat: make author clickable

This commit is contained in:
2023-08-12 18:32:56 +02:00
parent d2a02fcf34
commit 2b4173d759
27 changed files with 257 additions and 174 deletions

View File

@@ -34,6 +34,18 @@ export interface TMDBSeries {
vote_count: number;
}
export type GenericResource = {
name: string;
id: string;
type: keyof typeof resources;
meta?: {
image?: string;
author?: string;
average?: string;
thumbnail?: string;
};
};
export interface GiteaOauthUser {
sub: string;
name: string;