Regex implementation (yet to be implemented)

This commit is contained in:
Ben 2025-07-26 23:57:34 -07:00
parent 902f6513ff
commit 9a7834c330
Signed by: webmaster
GPG key ID: A5FCBAF34E6E8B50
5 changed files with 72 additions and 3 deletions

View file

@ -18,5 +18,5 @@ There is a regex-like behavior to these paths using the `*` and `?` characters.
The `*` character matches to any number of path segments. The `?` character matches to only one segment. Here's some examples:
* `HZJWwB0TAjz6pjAHosII5ofR /+16028675309/*` will allow the bearer token to access any endpoint with the phone number `+16028675309`
* `HZJWwB0TAjz6pjAHosII5ofR /+16028675309/*` will allow the bearer token to access any endpoint with the phone number `+16028675309`.
* `HZJWwB0TAjz6pjAHosII5ofR /+16028675309/direct/?/send` will allow the bearer token to send a direct message to anyone on that phone number.