mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-04 17:35:15 +00:00
API lib cleanup, 404 hosts WIP
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { getStreams, type Stream, type StreamExpansion } from "src/api/backend";
|
||||
import { getStreams, type HostExpansion, type Stream } from "src/api/backend";
|
||||
|
||||
const fetchStreams = (expand?: StreamExpansion[]) => {
|
||||
const fetchStreams = (expand?: HostExpansion[]) => {
|
||||
return getStreams(expand);
|
||||
};
|
||||
|
||||
const useStreams = (expand?: StreamExpansion[], options = {}) => {
|
||||
const useStreams = (expand?: HostExpansion[], options = {}) => {
|
||||
return useQuery<Stream[], Error>({
|
||||
queryKey: ["streams", { expand }],
|
||||
queryFn: () => fetchStreams(expand),
|
||||
|
||||
Reference in New Issue
Block a user