authelia/web/src/hooks/Configuration.ts

7 lines
199 B
TypeScript

import { useRemoteCall } from "@hooks/RemoteCall";
import { getConfiguration } from "@services/Configuration";
export function useConfiguration() {
return useRemoteCall(getConfiguration, []);
}