As an Administrator I need to restrict the access to the Reporting page

Customer request:

Can I disable the "Bulk Operations"/"Reporting (BETA)" pages in Jira? I.E prevent non-admins from seeing them?

Could this be possibly done by adding this option in the CONFIGURATION >> Settings section?

  • Juan Recabarren
  • Jul 19 2018
  • Planned
  • Attach files
  • Guest commented
    5 Apr 08:33pm

    Crud, sorry. Same person again. I copy/pasted the wrong code.

    <style type="text/css">

    #salesforce-dropdown-menu {

    display: none;

    }

    </style>


    Documentation source: https://confluence.atlassian.com/jirakb/how-to-hide-elements-in-jira-using-css-or-javascript-958774526.html

  • Guest commented
    5 Apr 08:32pm

    This is certainly not a replacement for a config option. But, you could hide the drop down all together by placing the following code in the announcement banner.


    <style type="text/css">
    #project-config-webpanel-summary-people
    {
    display: none;
    }
    #roles-add-users-button {
    display: none;
    }
    #view_project_roles {
    display: none;
    }
    </style>
  • +2