You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Only runs if `include` is not present. Will "pass" if any of set of the AuthorCriteria **does not** pass
15
+
* * OR => if ANY exclude condition "does not" pass then the exclude test passes
16
+
* * AND => if ALL exclude conditions "do not" pass then the exclude test passes
17
+
*
18
+
* Defaults to OR
19
+
* @default OR
20
+
* */
21
+
excludeCondition?: JoinOperands
22
+
/**
23
+
* Only runs if `include` is not present. Each AuthorCriteria is comprised of conditions that the Author being checked must "not" pass. See excludeCondition for set behavior
24
+
*
25
+
* EX: `isMod: true, name: Automoderator` => Will pass if the Author IS NOT a mod and IS NOT named Automoderator
0 commit comments