All files / platform/modules/staff/src/Jobs SyncSystemStaffScheduleDaily.js

33.33% Statements 3/9
100% Branches 0/0
66.67% Functions 2/3
33.33% Lines 3/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31                    6x       1x                             1x  
/* eslint-disable */
'use strict';
 
/**
 * Keep this job to handle remain jobs after release SyncConcurrentSystemStaffDailySchedules.
 * It will be removed in the future.
 * @deprecated
 */
class SyncSystemStaffScheduleDaily {
  static get key() {
    return 'SyncSystemStaffScheduleDaily-job';
  }
 
  static get concurrency() {
    return 1;
  }
 
  async handle(job) {
    const { data } = job;
 
    const Config = use('Config');
    const configs = Config.get('modules.staff.general');
    const namespace = configs.namespace;
    const targetSystemService = make(`${namespace}/Services/TargetSystemService`);
 
    await targetSystemService.updateStaffScheduleDaily(data);
  }
}
 
module.exports = SyncSystemStaffScheduleDaily;