implement cron page (#7)

This commit is contained in:
UUBulb
2024-11-20 00:19:40 +08:00
committed by GitHub
parent a487e6cb99
commit 0e4bcd3938
20 changed files with 555 additions and 28 deletions
+1 -1
View File
@@ -10,5 +10,5 @@ export const updateNotificationGroup = async (id: number, data: ModelNotificatio
}
export const deleteNotificationGroups = async (id: number[]): Promise<void> => {
return fetcher<void>(FetcherMethod.POST, `/api/v1/batch-delete/notification-group`, id)
return fetcher<void>(FetcherMethod.POST, `/api/v1/batch-delete/notification-group`, id);
}