This project is not covered by Drupal’s security advisory policy.
A simple module to allow you to add JIRA Issue Reporters by adding a few variable definitions to your settings.php. Adding these in settings.php allows you to enable/disable these issue reporters easily in different environments if you're using separate /sites/ folders.
This module works by adding to settings.php (recommended) or otherwise setting the following two variables:
enable_jira_issue_reporters : TRUE | FALSE-- setting this to TRUE will include any configured issue collectors on every page.jira_issue_repoters : array()-- An array of the JS file to include for each issue collector as provided by the HTML embed code from JIRA.
Each item in the array should just be a string which contains the URL to the issue collector JS, eg:
'http://jira.example.com/s/en_USh1u6hj/768/9/1.2.5/_/download/batch/com.a...'
Sample code for settings.php:
$conf['enable_jira_issue_reporters'] = TRUE;
$conf['jira_issue_reporters'] = array(
'http://jira.example.com/s/en_USh1u6hj/768/9/1.2.5/_/download/batch/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector.js?collectorId=5cbb920f',
);
Project information
- Project categories: Developer tools
- Created by bmcmurray on , updated
This project is not covered by the security advisory policy.
Use at your own risk! It may have publicly disclosed vulnerabilities.
