Skip to content

Commit

Permalink
project name -> key for now
Browse files Browse the repository at this point in the history
Signed-off-by: Maxwell Brown <[email protected]>
  • Loading branch information
Galactus22625 committed Jan 2, 2025
1 parent a5a4210 commit 66d05ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

@Getter
public class ProjectConfig {
@JsonProperty("name")
@JsonProperty("key")
private NameConfig nameConfig;
}
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static JiraSourceConfig createJiraConfiguration(String auth_type,

Map<String, Object> nameMap = new HashMap<>();
nameMap.put("include", projectKey);
projectMap.put("name", nameMap);
projectMap.put("key", nameMap);
filterMap.put("project", projectMap);


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private JiraSourceConfig createJiraSourceConfig(String authtype, boolean hasToke

Map<String, Object> nameMap = new HashMap<>();
nameMap.put("include", projectList);
projectMap.put("name", nameMap);
projectMap.put("key", nameMap);
filterMap.put("project", projectMap);

configMap.put("filter", filterMap);
Expand Down

0 comments on commit 66d05ce

Please sign in to comment.