Versions Compared

Key

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


Note

Exclusion Filter feature is only available from version 1.5.4 onwards.

Exclusion Filters

The exclusion filter allows user to specify issues to be ignored by Out Of Office Assistant, which can be done at Out Of Office Options.

Not sure how? Refer to How to modify Out Of Office Options for more information.


Examples

Table of Contents
minLevel3


Comments on Closed issues

...

Has a Last commented by a User Flag and its own checkbox searcher.

CCC Last Comment

Provides search on the last comment author's username, project roles, groups and more.

To exclude comments by a particular user, you can filter out issues whose last comment was made by user (e.g. jsmith).

Code Block
issue in lastCommentAuthor("jsmith")

To exclude comments by members of a particular group, you can filter out issues whose last comment was made by group (e.g. developers).

Code Block
issue in lastCommentGroup("developers")

...