Skip to content

Commit

Permalink
fix (taskPriorityStr): task_priority_str enums added
Browse files Browse the repository at this point in the history
  • Loading branch information
NSUWAL123 committed Dec 5, 2023
1 parent acf9995 commit 65afbfe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/frontend/src/types/enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,15 @@ export enum task_split_type {
choose_area_as_task = 1,
task_splitting_algorithm = 2,
}

export enum task_priority_str {
READY = 0,
LOCKED_FOR_MAPPING = 1,
MAPPED = 2,
LOCKED_FOR_VALIDATION = 3,
VALIDATED = 4,
INVALIDATED = 5,
BAD = 6,
SPLIT = 7,
ARCHIVED = 8,
}

0 comments on commit 65afbfe

Please sign in to comment.