mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	* fix webhooks not firing due to missing session * disable webhook test button because it doesnt do anything * fix background task administration not working at all * fix error in test
This commit is contained in:
		| @@ -1,5 +1,6 @@ | ||||
| import { BaseAPI } from "../base/base-clients"; | ||||
| import { ServerTask } from "~/lib/api/types/server"; | ||||
| import { PaginationData } from "~/lib/api/types/non-generated"; | ||||
|  | ||||
| const prefix = "/api"; | ||||
|  | ||||
| @@ -13,6 +14,6 @@ export class AdminTaskAPI extends BaseAPI { | ||||
|   } | ||||
|  | ||||
|   async getAll() { | ||||
|     return await this.requests.get<ServerTask[]>(routes.base); | ||||
|     return await this.requests.get<PaginationData<ServerTask>>(routes.base); | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user