You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 6 Next »
There are thousands of requests to hide the time-tracking information (e.g. internal costs) from customers.
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.
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