Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Problem

There are thousands of requests You want to hide the time-tracking information (e.g. details for customers, such as internal costs) from customers.

Solution

You can do this easily with Power Scripts™ for Jira, however note that the information is still available when inspecting the page source.

All you have to do is to create the following script and associate it with the main LiveFields configuration on your project.

using Power Scripts™ Live Fields.

Enter the script provided below and link it to the main Live Fields configuration in your project.

Info

The information is hidden on the user interface for users assigned the Customer role. However, it is still accessible when inspecting the page source.

hide_tt.sil
Code Block
languagejava
if(isUserInRole(currentUser(),project, "Customer")) {
 lfHide("timetracking_panel");
 lfHide("history_tab");
 lfHide("worklog_tab");
}
That's all. Your customers will have the panels and tabs hidden.

Table of Contents

Table of Contents