Skip to content

Commit 01cd03e

Browse files
authored
Merge pull request #13233 from nextcloud/backport/12232/stable30
[stable30] Fixed webhook equals operator from $eq to $e
2 parents 4dbaa3a + 1ba59c4 commit 01cd03e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin_manual/webhook_listeners/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ If you would like to match events fired by a specific user, you can pass ``{ "us
3131

3232
If you would like to enforce multiple criteria, you can simply pass multiple properties ``{ "event.tableId": 42, "event.rowId": 3 }``
3333

34-
You can also use additional comparison operators (``$eq, $ne, $gt, $gte, $lt, $lte, $in, $nin``) as well as logical operators (``$and, $or, $not, $nor``). For example use ``{ "time" : { "$lt": 1711971024 } }`` to accept only events prior to April 1st 2024 and ``{ "time" : { "$not": { "$lt": 1711971024 } } }`` to accept events after April 1st 2024.
34+
You can also use additional comparison operators (``$e, $ne, $gt, $gte, $lt, $lte, $in, $nin``) as well as logical operators (``$and, $or, $not, $nor``). For example use ``{ "time" : { "$lt": 1711971024 } }`` to accept only events prior to April 1st 2024 and ``{ "time" : { "$not": { "$lt": 1711971024 } } }`` to accept events after April 1st 2024.
3535

3636
Speeding up webhook dispatch
3737
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)