mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
34 lines
1.1 KiB
Svelte
34 lines
1.1 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 LoadingSpinner from '$lib/components/shared-components/loading-spinner.svelte';
|
||
|
|
import { api, SystemConfigDto } from '@api';
|
||
|
|
|
||
|
|
let systemConfig: SystemConfigDto;
|
||
|
|
|
||
|
|
const getConfig = async () => {
|
||
|
|
const { data } = await api.systemConfigApi.getConfig();
|
||
|
|
systemConfig = data;
|
||
|
|
|
||
|
|
return data;
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<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>
|
||
|
|
{/await}
|
||
|
|
</section>
|