11 lines
341 B
JavaScript
11 lines
341 B
JavaScript
/**
|
|
* wellfound.mjs — Wellfound ATS handler
|
|
* TODO: implement
|
|
*/
|
|
export const SUPPORTED_TYPES = ['wellfound'];
|
|
|
|
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: 'wellfound' };
|
|
}
|