mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-10 00:26:58 +01:00
* feat(pihole): add support for v6 * fix: add session-store to keep using same session for pi-hole requests * chore: address pull request feedback * fix: import issue * fix: other import errors
21 lines
764 B
TypeScript
21 lines
764 B
TypeScript
import dayjs from "dayjs";
|
|
|
|
import type { IntegrationKindByCategory } from "@homarr/definitions";
|
|
import { createIntegrationAsync } from "@homarr/integrations";
|
|
import type { MediaRequest } from "@homarr/integrations/types";
|
|
|
|
import { createCachedIntegrationRequestHandler } from "./lib/cached-integration-request-handler";
|
|
|
|
export const mediaRequestListRequestHandler = createCachedIntegrationRequestHandler<
|
|
MediaRequest[],
|
|
IntegrationKindByCategory<"mediaRequest">,
|
|
Record<string, never>
|
|
>({
|
|
async requestAsync(integration, _input) {
|
|
const integrationInstance = await createIntegrationAsync(integration);
|
|
return await integrationInstance.getRequestsAsync();
|
|
},
|
|
cacheDuration: dayjs.duration(1, "minute"),
|
|
queryKey: "mediaRequestList",
|
|
});
|