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 32cb2fa commit 2f6a78aCopy full SHA for 2f6a78a
jbi/models.py
@@ -78,23 +78,9 @@ class ActionParams(BaseModel, frozen=True):
78
jira_resolution_field: str = "resolution"
79
labels_brackets: Literal["yes", "no", "both"] = "no"
80
status_map: dict[str, str] = {}
81
- priority_map: dict[str, str] = {
82
- "P1": "1",
83
- "P2": "2",
84
- "P3": "3",
85
- "P4": "4",
86
- "P5": "5",
87
- "--": "10000",
88
- }
+ priority_map: dict[str, str] = {}
89
resolution_map: dict[str, str] = {}
90
- severity_map: dict[str, str] = {
91
- "S1": "1",
92
- "S2": "2",
93
- "S3": "3",
94
- "S4": "4",
95
- "N/A": "--",
96
- "--": "--",
97
+ severity_map: dict[str, str] = {}
98
issue_type_map: dict[str, str] = {"task": "Task", "defect": "Bug"}
99
100
0 commit comments