You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/apis/hooks/site.ts

16 lines
372 B

import { useSystemSettings } from ".";
export function useEnabledStatus() {
const { data } = useSystemSettings();
return {
sonarr: data?.general.use_sonarr ?? false,
radarr: data?.general.use_radarr ?? false,
};
}
export function useShowOnlyDesired() {
const { data } = useSystemSettings();
return data?.general.embedded_subs_show_desired ?? false;
}