Versions Compared

Key

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

...

Hiding Time-Tracking Information

Table of Contents


Info
titleRequired apps

Power Scripts™ for Jira 2.5.2+ (server)

Level: BASIC

Problem

There are thousands of requests to hide the time-tracking information (e.g. internal costs) from customers. I can see the utility of that, although we do not use it in Kepler.How it is done with JJupin ? Well, this is very, very simple but keep in mind that this is not a security solution therefore the

Solution

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

 

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

 

Code Block
languagejava
titlehide_tt.sil
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.

See also