Skip to end of banner
Go to start of banner

Hiding Time-Tracking Information

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »


Required plugins

JJupin 2.5.2+

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.

Solution

How it is done with JJupin ? Well, this is very, very simple but keep in mind that this is not a secure solution because the information is still available when inspecting the page source.


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

hide_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.

  • No labels