wuffle 0.70.1 → 0.72.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/apps/board-api-routes/board-api-filters.js +16 -8
- package/lib/apps/github-reviews/GithubReviews.js +4 -2
- package/lib/apps/search/Search.js +124 -44
- package/lib/filters.js +12 -6
- package/lib/util/search.js +111 -20
- package/package.json +10 -10
- package/public/bundle.js +1 -1
- package/public/bundle.js.map +1 -1
- package/wuffle.config.example.js +6 -1
package/wuffle.config.example.js
CHANGED
|
@@ -33,6 +33,9 @@
|
|
|
33
33
|
*
|
|
34
34
|
* You may define a default filter to apply to the board if
|
|
35
35
|
* there is no user-defined search query.
|
|
36
|
+
*
|
|
37
|
+
* You may also configure whether bots are counted as
|
|
38
|
+
* legitimate reviewers (for both review and approval).
|
|
36
39
|
*/
|
|
37
40
|
export default {
|
|
38
41
|
|
|
@@ -48,5 +51,7 @@ export default {
|
|
|
48
51
|
{ name: 'Done', label: null, closed: true }
|
|
49
52
|
],
|
|
50
53
|
|
|
51
|
-
defaultFilter: '!repo:"some/ignored-repository"'
|
|
54
|
+
defaultFilter: '!repo:"some/ignored-repository"',
|
|
55
|
+
|
|
56
|
+
treatBotsAsReviewers: false
|
|
52
57
|
};
|