Skip to content

Commit

Permalink
[TECH] Enregistrement automatique des Jobs dans le worker.js (PIX-13944)
Browse files Browse the repository at this point in the history
  • Loading branch information
pix-service-auto-merge authored Aug 21, 2024
2 parents 07a610b + b137825 commit e828a3e
Show file tree
Hide file tree
Showing 42 changed files with 429 additions and 449 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { JobPgBoss } from '../../../../src/shared/infrastructure/jobs/JobPgBoss.js';
import { JobPriority } from '../../../../src/shared/infrastructure/jobs/JobPriority.js';
import { JobPriority, JobRepository } from '../../../../src/shared/infrastructure/repositories/jobs/job-repository.js';
import { CertificationCompletedJob } from '../../../domain/events/CertificationCompleted.js';
class CertificationCompletedJobRepository extends JobPgBoss {
class CertificationCompletedJobRepository extends JobRepository {
constructor() {
super({
name: CertificationCompletedJob.name,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { UserAnonymizedEventLoggingJob } from '../../../../src/identity-access-management/domain/models/UserAnonymizedEventLoggingJob.js';
import { JobPgBoss } from '../../../../src/shared/infrastructure/jobs/JobPgBoss.js';
import { JobRepository } from '../../../../src/shared/infrastructure/repositories/jobs/job-repository.js';

class UserAnonymizedEventLoggingJobRepository extends JobPgBoss {
class UserAnonymizedEventLoggingJobRepository extends JobRepository {
constructor() {
super({
name: UserAnonymizedEventLoggingJob.name,
Expand Down
Loading

0 comments on commit e828a3e

Please sign in to comment.