Files
tubearchivist/frontend/src/api/loader/loadAppsettingsConfig.ts
2025-07-11 20:10:22 +07:00

43 lines
1.1 KiB
TypeScript

import APIClient from '../../functions/APIClient';
export type AppSettingsConfigType = {
subscriptions: {
channel_size: number | null;
live_channel_size: number | null;
shorts_channel_size: number | null;
playlist_size: number | null;
auto_start: boolean;
extract_flat: boolean;
};
downloads: {
limit_speed: number | null;
sleep_interval: number | null;
autodelete_days: number | null;
format: string | null;
format_sort: string | null;
add_metadata: boolean;
add_thumbnail: boolean;
subtitle: string | null;
subtitle_source: string | null;
subtitle_index: boolean;
comment_max: string | null;
comment_sort: string;
cookie_import: boolean;
potoken: boolean;
throttledratelimit: number | null;
extractor_lang: string | null;
integrate_ryd: boolean;
integrate_sponsorblock: boolean;
};
application: {
enable_snapshot: boolean;
enable_cast: boolean;
};
};
const loadAppsettingsConfig = async () => {
return APIClient<AppSettingsConfigType>('/api/appsettings/config/');
};
export default loadAppsettingsConfig;