Versions Compared

Key

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

...

Here is an example of JavaScript code that will clear the ticket subject property if the ticket tags include a "secret" tag:

Code Block
if (ticket.tags && ticket.tags.indexOf("secret") >= 0) {
  ticket.subject = "";
}

If you would like to skip some tickets and do not import them in flexin flex.bi then use return false; in these cases.

...