diff options
-rw-r--r-- | server/models/job/job.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/job/job.ts b/server/models/job/job.ts index 35c357e69..637d4f16c 100644 --- a/server/models/job/job.ts +++ b/server/models/job/job.ts | |||
@@ -30,10 +30,10 @@ export class JobModel extends Model<JobModel> { | |||
30 | handlerInputData: any | 30 | handlerInputData: any |
31 | 31 | ||
32 | @CreatedAt | 32 | @CreatedAt |
33 | creationDate: Date | 33 | createdAt: Date |
34 | 34 | ||
35 | @UpdatedAt | 35 | @UpdatedAt |
36 | updatedOn: Date | 36 | updatedAt: Date |
37 | 37 | ||
38 | static listWithLimitByCategory (limit: number, state: JobState, jobCategory: JobCategory) { | 38 | static listWithLimitByCategory (limit: number, state: JobState, jobCategory: JobCategory) { |
39 | const query = { | 39 | const query = { |