rez_core 5.0.294 → 5.0.295
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module/workflow-schedule/interfaces/schedule-job-data.interface.d.ts +1 -0
- package/dist/module/workflow-schedule/service/workflow-schedule.service.js +2 -0
- package/dist/module/workflow-schedule/service/workflow-schedule.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow-schedule/interfaces/schedule-job-data.interface.ts +1 -0
- package/src/module/workflow-schedule/service/workflow-schedule.service.ts +2 -0
package/package.json
CHANGED
|
@@ -368,6 +368,7 @@ export class WorkflowScheduleService {
|
|
|
368
368
|
const schedule = await this.getScheduleById(scheduleId);
|
|
369
369
|
|
|
370
370
|
const jobData: ScheduleJobData = {
|
|
371
|
+
id:loggedInUser.id,
|
|
371
372
|
schedule_id: schedule.id,
|
|
372
373
|
workflow_id: schedule.workflow_id,
|
|
373
374
|
workflow_name: schedule.workflow_name,
|
|
@@ -520,6 +521,7 @@ export class WorkflowScheduleService {
|
|
|
520
521
|
*/
|
|
521
522
|
private async scheduleJob(schedule: ScheduledWorkflow, loggedInUser: UserData): Promise<void> {
|
|
522
523
|
const jobData: ScheduleJobData = {
|
|
524
|
+
id:loggedInUser.id,
|
|
523
525
|
schedule_id: schedule.id,
|
|
524
526
|
workflow_id: schedule.workflow_id,
|
|
525
527
|
workflow_name: schedule.workflow_name,
|