Versions Compared

Key

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

...

This script hides a custom field (customfield_10711) from for users who are not in assigned to the developer role.

Code Block
if(isUserInRole(currentUser(), "EX", "Developers") == false) {
    lfHide("customfield_10711");
}