Files
claw-apply/lib/apply/workday.mjs

11 lines
333 B
JavaScript

/**
* workday.mjs — Workday ATS handler
* TODO: implement
*/
export const SUPPORTED_TYPES = ['workday'];
export async function apply(page, job, formFiller) {
return { status: 'skipped_external_unsupported', meta: { title: job.title, company: job.company },
externalUrl: job.apply_url, ats_platform: 'workday' };
}