* update oauth tests * fix parseRequestData * add logging * add fallback * use ?? * updates * use parseUrlFormData in saml/callback * update tests * fix * remove log * update * any -> unknown * use HttpErrors * addressed * unknown -> any * feat: Add entry report wrapper to every api route in appDir * fix * fix unit test * fix
12 lines
383 B
TypeScript
12 lines
383 B
TypeScript
import { defaultResponderForAppDir } from "app/api/defaultResponderForAppDir";
|
|
|
|
import { GET as handler } from "@calcom/features/tasker/api/cron";
|
|
|
|
export const GET = defaultResponderForAppDir(handler);
|
|
|
|
/**
|
|
* This runs each minute and we need fresh data each time
|
|
* @see https://nextjs.org/docs/app/building-your-application/caching#opting-out-2
|
|
**/
|
|
export const revalidate = 0;
|