mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 03:39:21 +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
753 B
TypeScript
21 lines
753 B
TypeScript
import dayjs from "dayjs";
|
|
|
|
import type { IntegrationKindByCategory } from "@homarr/definitions";
|
|
import { createIntegrationAsync } from "@homarr/integrations";
|
|
import type { Indexer } from "@homarr/integrations/types";
|
|
|
|
import { createCachedIntegrationRequestHandler } from "./lib/cached-integration-request-handler";
|
|
|
|
export const indexerManagerRequestHandler = createCachedIntegrationRequestHandler<
|
|
Indexer[],
|
|
IntegrationKindByCategory<"indexerManager">,
|
|
Record<string, never>
|
|
>({
|
|
async requestAsync(integration, _input) {
|
|
const integrationInstance = await createIntegrationAsync(integration);
|
|
return await integrationInstance.getIndexersAsync();
|
|
},
|
|
cacheDuration: dayjs.duration(5, "minutes"),
|
|
queryKey: "indexerManager",
|
|
});
|