We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2be3a1 commit dd8b7e9Copy full SHA for dd8b7e9
backend/src/reports/models/report.model.ts
@@ -21,9 +21,6 @@ export class Report {
21
@ApiProperty({ description: 'Category of the report' })
22
category: string;
23
24
- @ApiProperty({ description: 'Date of the report' })
25
- date: string;
26
-
27
@ApiProperty({
28
description: 'Status of the report',
29
enum: ReportStatus,
backend/src/reports/reports.service.ts
@@ -270,7 +270,6 @@ export class ReportsService {
270
title: 'New Report',
271
bookmarked: false,
272
category: '',
273
- date: '',
274
status: ReportStatus.UNREAD,
275
createdAt: new Date().toISOString(),
276
updatedAt: new Date().toISOString(),
0 commit comments