mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
[Breaking] newly uploaded file will conform to the default structure of `{uploadLocation}/{userId}/year/year-month-day/filename.ext`
47 lines
1.6 KiB
Svelte
47 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import FFmpegSettings from '$lib/components/admin-page/settings/ffmpeg/ffmpeg-settings.svelte';
|
|
import OAuthSettings from '$lib/components/admin-page/settings/oauth/oauth-settings.svelte';
|
|
import SettingAccordion from '$lib/components/admin-page/settings/setting-accordion.svelte';
|
|
import StorageTemplateSettings from '$lib/components/admin-page/settings/storate-template/storage-template-settings.svelte';
|
|
import LoadingSpinner from '$lib/components/shared-components/loading-spinner.svelte';
|
|
import { api, SystemConfigDto } from '@api';
|
|
import type { PageData } from './$types';
|
|
|
|
let systemConfig: SystemConfigDto;
|
|
export let data: PageData;
|
|
const getConfig = async () => {
|
|
const { data } = await api.systemConfigApi.getConfig();
|
|
systemConfig = data;
|
|
|
|
return data;
|
|
};
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Settings - Immich</title>
|
|
</svelte:head>
|
|
|
|
<section class="">
|
|
{#await getConfig()}
|
|
<LoadingSpinner />
|
|
{:then configs}
|
|
<SettingAccordion
|
|
title="FFmpeg Settings"
|
|
subtitle="Manage the resolution and encoding information of the video files"
|
|
>
|
|
<FFmpegSettings ffmpegConfig={configs.ffmpeg} />
|
|
</SettingAccordion>
|
|
|
|
<SettingAccordion title="OAuth Settings" subtitle="Manage the OAuth integration to Immich app">
|
|
<OAuthSettings oauthConfig={configs.oauth} />
|
|
</SettingAccordion>
|
|
|
|
<SettingAccordion
|
|
title="Storage Template"
|
|
subtitle="Manage the folder structure and file name of the upload asset"
|
|
>
|
|
<StorageTemplateSettings storageConfig={configs.storageTemplate} user={data.user} />
|
|
</SettingAccordion>
|
|
{/await}
|
|
</section>
|