Skip to content

Commit

Permalink
fixed typos in export job type
Browse files Browse the repository at this point in the history
  • Loading branch information
floschne committed Mar 10, 2023
1 parent 602eba0 commit bd08217
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/src/app/core/data/dto/export_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SingleProjectAllDataExportJobParams(SpecificExportJobParameters):

class SingleProjectAllTagsExportJobParams(SpecificExportJobParameters):
export_job_type: ExportJobType = Field(
default=ExportJobType.SINGLE_PROJECT_ALL_DATA,
default=ExportJobType.SINGLE_PROJECT_ALL_TAGS,
const=True,
description="The type of the export job (what to export)",
)
Expand Down Expand Up @@ -84,7 +84,7 @@ class SingleUserAllMemosExportJobParams(SpecificExportJobParameters):

class SingleUserLogbookExportJobParams(SpecificExportJobParameters):
export_job_type: ExportJobType = Field(
default=ExportJobType.SINGLE_USER_ALL_MEMOS,
default=ExportJobType.SINGLE_USER_LOGBOOK,
const=True,
description="The type of the export job (what to export)",
)
Expand All @@ -106,7 +106,7 @@ class SingleDocSingleUserAnnotationsExportJobParams(
SpecificExportJobParameters
):
export_job_type: ExportJobType = Field(
default=ExportJobType.SINGLE_DOC_ALL_USER_ANNOTATIONS,
default=ExportJobType.SINGLE_DOC_SINGLE_USER_ANNOTATIONS,
const=True,
description="The type of the export job (what to export)",
)
Expand Down

0 comments on commit bd08217

Please sign in to comment.