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 minLevel 3
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.
Comments by a particular user
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") |
Comments by a particular group
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") |
...