feat: enhance AdventureImage model with custom upload path and add latitude/longitude fields to Country model

This commit is contained in:
Sean Morley
2025-01-01 19:27:33 -05:00
parent 67f6af8ca3
commit 5d12d103fc
11 changed files with 115 additions and 4 deletions

View File

@@ -1057,6 +1057,7 @@ it would also work to just use on:click on the MapLibre component itself. -->
<div class="flex flex-wrap gap-4 mr-4 mt-2">
{#each immichImages as image}
<div class="flex flex-col items-center gap-2">
<!-- svelte-ignore a11y-img-redundant-alt -->
<img
src={`/immich/${image.id}`}
alt="Image from Immich"

View File

@@ -50,6 +50,8 @@ export type Country = {
capital: string;
num_regions: number;
num_visits: number;
longitude: number | null;
latitude: number | null;
};
export type Region = {