Uploaded image for project: 'Jira Data Center'
  1. Jira Data Center
  2. JRASERVER-46161

Document the changes in JIRA projects plugin source code

    XMLWordPrintable

Details

    • 1
    • 1
    • We collect Jira feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

    Description

      NOTE: This suggestion is for JIRA Server. Using JIRA Cloud? See the corresponding suggestion.

      Problem Definition

      In JIRA 6.4.1, customer can disable the 'Feedback' link from Project side bar through database by executing the SQL queries below:

      insert into pluginstate values ('com.atlassian.jira.jira-projects-plugin:projects-feedback-web-panel','false');
      insert into pluginstate values ('com.atlassian.jira.jira-projects-plugin:feedback-issue-collector','false');
      

      However, after upgraded to JIRA 6.4.12 the queries are no longer valid which mean the feedback link still appeared in the project side bar and only icon was missing.

      It seems we have introduced a new module known as "sidebar-feedback-link" for feedback link. After executed the SQL query below, the link has gone:

      insert into pluginstate values ('com.atlassian.jira.jira-projects-plugin:sidebar-feedback-link','false');
      

      Suggested Solution

      It would be great if we can documents this changes in the release notes or somewhere else to avoid user to do a double job and be a reference in the future.

      Workaround

      Run the SQL queries below to disable Feedback link in JIRA 6.4.12:

      insert into pluginstate values ('com.atlassian.jira.jira-projects-plugin:feedback-issue-collector','false');
      insert into pluginstate values ('com.atlassian.jira.jira-projects-plugin:sidebar-feedback-link','false');
      

      Attachments

        Issue Links

          Activity

            People

              mpaisley Mel Paisley
              ckimloong John Chin
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: