mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-20 02:00:14 +00:00
implement setting page (#12)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { ModelWAF } from "@/types"
|
||||
import { fetcher, FetcherMethod } from "./api"
|
||||
|
||||
export const deleteWAF = async (ip: string[]): Promise<void> => {
|
||||
return fetcher<void>(FetcherMethod.POST, '/api/v1/batch-delete/waf', ip);
|
||||
}
|
||||
|
||||
export const getWAFList = async (): Promise<ModelWAF[]> => {
|
||||
return fetcher<ModelWAF[]>(FetcherMethod.GET, '/api/v1/waf', null);
|
||||
}
|
||||
Reference in New Issue
Block a user