Skip to content

Commit ad776a0

Browse files
authored
Merge pull request #13232 from nextcloud/backport/12232/stable31
[stable31] Fixed webhook equals operator from $eq to $e
2 parents a48c5ff + 51ae7d1 commit ad776a0

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
@@ -33,7 +33,7 @@ If you would like to match events fired by a specific user, you can pass ``{ "us
3333

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

36-
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.
36+
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.
3737

3838
Speeding up webhook dispatch
3939
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)