mirror of
https://github.com/whyour/qinglong.git
synced 2025-12-13 07:25:05 +08:00
Reverted all changes to sample files as the correct fix is to export NODE_OPTIONS/PYTHONPATH in the preload scripts (sitecustomize.js/py), not to modify sample files. This was the maintainer's feedback. Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
/**
|
|
* 任务名称
|
|
* name: script name
|
|
* 定时规则
|
|
* cron: 1 9 * * *
|
|
*/
|
|
console.log('test scripts');
|
|
QLAPI.notify('test scripts', 'test desc');
|
|
QLAPI.getEnvs({ searchValue: 'dddd' }).then((x) => {
|
|
console.log('getEnvs', x);
|
|
});
|
|
QLAPI.systemNotify({ title: '123', content: '231' }).then((x) => {
|
|
console.log('systemNotify', x);
|
|
});
|
|
|
|
// 查询定时任务 (Query cron tasks)
|
|
QLAPI.getCrons({ searchValue: 'test' }).then((x) => {
|
|
console.log('getCrons', x);
|
|
});
|
|
|
|
// 通过ID查询定时任务 (Get cron by ID)
|
|
QLAPI.getCronById({ id: 1 }).then((x) => {
|
|
console.log('getCronById', x);
|
|
}).catch((err) => {
|
|
console.log('getCronById error', err);
|
|
});
|
|
|
|
// 启用定时任务 (Enable cron tasks)
|
|
QLAPI.enableCrons({ ids: [1, 2] }).then((x) => {
|
|
console.log('enableCrons', x);
|
|
});
|
|
|
|
// 禁用定时任务 (Disable cron tasks)
|
|
QLAPI.disableCrons({ ids: [1, 2] }).then((x) => {
|
|
console.log('disableCrons', x);
|
|
});
|
|
|
|
// 手动执行定时任务 (Run cron tasks manually)
|
|
QLAPI.runCrons({ ids: [1] }).then((x) => {
|
|
console.log('runCrons', x);
|
|
});
|
|
|
|
console.log('test desc');
|