Skip to content

Commit

Permalink
Merge pull request #37 from reportportal/EPMRPP-78914_documentation_link
Browse files Browse the repository at this point in the history
EPMRPP-78914 || Redesign integrations. Link updates
  • Loading branch information
APiankouski authored Aug 30, 2023
2 parents 1f859f5 + 65845a0 commit 9a34bbb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
@Extension
public class CloudJiraExtension implements ReportPortalExtensionPoint, DisposableBean {

private static final String DOCUMENTATION_LINK_FIELD = "documentationLink";
private static final String DOCUMENTATION_LINK = "https://reportportal.io/docs/plugins/JiraCloud";
public static final String BINARY_DATA_PROPERTIES_FILE_ID = "binary-data.properties";

private static final String PLUGIN_ID = "JIRA Cloud";
Expand Down Expand Up @@ -151,6 +153,7 @@ protected ObjectMapper configureObjectMapper() {
public Map<String, ?> getPluginParams() {
Map<String, Object> params = new HashMap<>();
params.put(ALLOWED_COMMANDS, new ArrayList<>(pluginCommandMapping.get().keySet()));
params.put(DOCUMENTATION_LINK_FIELD, DOCUMENTATION_LINK);
params.put(COMMON_COMMANDS, new ArrayList<>(commonPluginCommandMapping.get().keySet()));
return params;
}
Expand Down

0 comments on commit 9a34bbb

Please sign in to comment.