素材云批量删除
This commit is contained in:
@@ -130,5 +130,5 @@ export const api = {
|
||||
post: <T>(path: string, body?: unknown, auth = true, skipAuthRedirect = false) =>
|
||||
apiRequest<T>(path, { method: 'POST', body, auth, skipAuthRedirect }),
|
||||
put: <T>(path: string, body?: unknown, auth = true) => apiRequest<T>(path, { method: 'PUT', body, auth }),
|
||||
delete: <T>(path: string, auth = true) => apiRequest<T>(path, { method: 'DELETE', auth }),
|
||||
delete: <T>(path: string, body?: unknown, auth = true) => apiRequest<T>(path, { method: 'DELETE', body, auth }),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user