Add video support, media filters, and translations
Build and Push Docker Images / build-backend (push) Failing after 14m2s
Build and Push Docker Images / build-frontend (push) Failing after 44m43s
Build and Push Docker Images / summary (push) Successful in 3s

This commit is contained in:
2025-11-28 13:29:44 +01:00
parent bce5f749b1
commit 9a75f1c929
28 changed files with 1635 additions and 294 deletions
+5 -3
View File
@@ -55,8 +55,10 @@ export interface Photo {
secure_url_template?: string;
download_url_template?: string;
requires_token?: boolean;
type: 'collage' | 'individual';
category_id?: number;
type: 'collage' | 'individual' | 'video';
media_type?: 'photo' | 'video';
mime_type?: string;
category_id?: number | string | null;
category_name?: string;
category_slug?: string;
size: number;
@@ -71,7 +73,7 @@ export interface Photo {
}
export interface PhotoCategory {
id: number;
id: number | string;
name: string;
slug: string;
is_global: boolean;